/* Auth Pages Styles */
.auth-header {
    box-shadow: none;
    background-color: transparent;
    position: static;
}

.auth-section {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signup-container {
    grid-template-columns: 1fr;
}

.auth-form-container {
    padding: 40px;
}

.auth-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.auth-form-container p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
}

.forgot-password {
    text-align: right;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-image {
    position: relative;
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: white;
}

.auth-overlay h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

footer.auth-footer {
    background-color: transparent;
    color: var(--text-color);
    padding: 20px 0;
    text-align: center;
}

footer.auth-footer p {
    color: var(--text-light);
}

.mt-3 {
    margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-image {
        display: none;
    }
}