/* Auth specific styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
}

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

.auth-logo {
    display: block;
    margin: 0 auto 2rem;
    height: 3rem;
    width: auto;
}

.auth-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2rem;
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.15s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-error {
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4B5563;
}

.forgot-password {
    font-size: 0.875rem;
    color: #4F46E5;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.forgot-password:hover {
    color: #4338CA;
}

.auth-submit {
    width: 100%;
    padding: 0.625rem;
    background-color: #4F46E5;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.auth-submit:hover {
    background-color: #4338CA;
}

.auth-submit:disabled {
    background-color: #9CA3AF;
    cursor: not-allowed;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #6B7280;
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #E5E7EB;
}

.auth-divider span {
    padding: 0 1rem;
}

.social-login {
    display: flex;
    gap: 1rem;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem;
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.social-button:hover {
    background-color: #F9FAFB;
}

.social-button img {
    height: 1.25rem;
    width: 1.25rem;
}
