.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.auth-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    padding: 40px 30px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.auth-header h1 {
    color: #36034e;
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-header p {
    color: #716a74;
    font-size: 16px;
}

.social-login {
    margin-bottom: 25px;
}

.btn-social-login {
    width: 100%;
    padding: 12px 15px;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-social-login:hover {
    background-color: #f7f7f7;
}

.btn-social-login img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #716a74;
}

.divider:before,
.divider:after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span {
    padding: 0 10px;
    font-size: 14px;
}

.auth-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #36034e;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    font-size: 15px;
    transition: border-color 0.3s;
}

#email-group input {
    background-image: url('img/email.svg');
    background-size: 23px 23px;
    background-position: 10px 10px;
    padding-left: 40px;
    background-repeat: no-repeat;
}

#password-group input {
    background-image: url('img/lock.svg');
    background-size: 23px 23px;
    background-position: 10px 10px;
    padding-left: 40px;
    background-repeat: no-repeat;
}

.form-group input:focus {
    border-color: #d3ff00;
    outline: none;
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 8px;
    color: #36034e;
    font-size: 14px;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.remember-me {
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 15px;
    color: #716a74;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #f7f7f7;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #d3ff00;
    border-color: #d3ff00;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #36034e;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #d3ff00;
    color: #36034e;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #36034e;
    color: #d3ff00;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #716a74;
    font-size: 15px;
}

.auth-footer a {
    color: #36034e;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #716a74;
}

#modal-title {
    color: #36034e;
    margin-bottom: 15px;
    font-size: 22px;
}

#modal-message {
    color: #716a74;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-modal {
    padding: 10px 30px;
    background-color: #d3ff00;
    color: #36034e;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-modal:hover {
    background-color: #36034e;
    color: #d3ff00;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-container {
        padding: 20px;
    }
}