
.auth-container {
    min-height: calc(100vh - 200px);
}

.auth-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.auth-title {
    color: var(--text-primary);
    font-weight: 700;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.auth-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.auth-link-bold {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.auth-link-bold:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.auth-form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.auth-form-check-label {
    cursor: pointer;
    color: var(--text-secondary);
}

.auth-form-check-input {
    cursor: pointer;
}

.auth-divider {
    border-top: 1px solid #e9ecef;
}

.auth-text-secondary {
    color: var(--text-secondary);
}

.auth-card-custom {
    transition: none !important;
    animation: none !important;
}

.auth-card-custom:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
}

@media (max-width: 768px) {
    .auth-card-custom {
        padding: 2rem !important;
    }
}

