/* ----------------------------------------------------
   Custom Login / Registration Auth Styles
------------------------------------------------------- */

.auth-header-custom {
    background-color: #f6f6f6;
    padding: 1.5rem 0;
}

.auth-breadcrumb-custom {
    font-size: 0.9rem;
    color: #666;
}

.auth-breadcrumb-custom a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-breadcrumb-custom a:hover {
    color: var(--primary, #0d6efd);
}

.auth-card-custom {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 2rem;
    background-color: #fff;
}

.form-label-custom {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.auth-help-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.auth-optional-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-left: 10px;
}

.auth-checkbox-label {
    font-size: 0.95rem;
    color: #333;
}

.auth-checkbox-help {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    display: block;
    margin-top: 0.25rem;
}

.btn-auth-show {
    background-color: #2b3035;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0 1.5rem;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-auth-show:hover,
.btn-auth-show:focus {
    background-color: #1a1e21;
    color: #fff;
}

.auth-switch-link {
    font-size: 0.95rem;
    color: #666;
}

.auth-switch-link a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-switch-link a:hover {
    color: var(--primary, #0d6efd);
}

.auth-forgot-password {
    font-size: 0.85rem;
    color: #666;
    transition: color 0.3s ease;
}

.auth-forgot-password:hover {
    color: var(--primary, #0d6efd);
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-control.is-invalid,
.form-select.is-invalid,
.form-check-input.is-invalid {
    border-color: #dc3545 !important;
}

button[type="submit"]:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}