.auth-section {
    min-height: calc(100vh - var(--nav-height));
    padding: 8rem 2rem 4rem 2rem;
    background-color: #f8fafc;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.auth-content {
    flex: 1;
    max-width: 600px;
    display: none;
}

.auth-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.auth-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.auth-feature span {
    color: var(--primary-color);
    font-size: 1.75rem;
    background-color: #e0e7ff;
    padding: 0.75rem;
    border-radius: 1rem;
}

.auth-feature-text {
    flex: 1;
}

.auth-feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.auth-feature-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

.auth-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Remove social login related styles */
.social-login,
.social-button,
.auth-divider {
    display: none;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    font-size: 0.95rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Fix password input and toggle icon styles */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.input-with-icon:hover {
    border-color: #cbd5e1;
}

.input-with-icon:focus-within {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-with-icon span:first-child {
    position: absolute;
    left: 1rem;
    color: #64748b;
}

.input-with-icon input {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-left: 3rem;
    padding-right: 2.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    background-color: transparent;
}

.input-with-icon input:focus {
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 40px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.375rem;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.95rem;
    color: #1e293b;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.auth-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive Design */
@media (min-width: 1024px) {
    .auth-content {
        display: block;
    }
}

@media (max-width: 1024px) {
    .auth-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .auth-section {
        padding: 7rem 1.5rem 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.error-message {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message::before {
    content: "error";
    font-family: 'Material Symbols Rounded';
    font-size: 1.25rem;
} 