body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../images/1502.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #fff;
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 30px;
        font-weight: 600;
        color: #fff;
    }

label {
    font-weight: 500;
}

.form-control {
    border-radius: 8px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border: none;
}

    .form-control::placeholder {
        color: #eee;
    }

.form-check-label,
.forgot-pass {
    font-size: 0.9rem;
    color: #eee;
}

    .forgot-pass:hover {
        text-decoration: underline;
    }

.btn-primary {
    background-color: #e67e22;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    height: 45px;
}

    .btn-primary:hover {
        background-color: #cf711c;
    }

.social-login {
    text-align: center;
    margin-top: 20px;
}

    .social-login a {
        margin: 0 10px;
        color: #fff;
        font-size: 20px;
    }

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider::before,
    .divider::after {
        content: "";
        height: 1px;
        background: #ddd;
        position: absolute;
        top: 50%;
        width: 45%;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: rgba(255, 255, 255, 0.1);
        padding: 0 10px;
    }

.validation-summary-errors {
    color: #ffaaaa;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }
}
