body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #095174;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0f2030;
    background: linear-gradient(10deg, rgba(17, 44, 65, 0.85), rgba(8, 17, 25, 0.95)), url('/resources/img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

a {
    transition: all 0.2s ease;
    text-decoration: none;
}

.login {
    color: rgba(255, 255, 255, 0.75);
    width: 100%;
    max-width: 430px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.login img {
    width: 50%;
    height: auto;
    margin-bottom: 25px;
}

.form-control {
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    color: #fff !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    padding-left: 0;
}

.form-control:focus {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1;
}

.login-footer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.login-footer a {
    color: rgba(255, 255, 255, 0.4);
}

.login-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    color: #0f2030;
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

.mobile {
    height: 800px;
}

@media (max-width: 1500px) {
    .login {
        max-width: 500px;
    }

    .mobile {
        height: 500px;
    }
}