/* MedEzee Auth Pages - Custom Overrides */
/* This file adds polish to Skote auth pages without changing theme colors */
/* Do NOT override Skote background colors - only remove background images if needed */

/* ========================================
   MedEzee Logo Styling
   ======================================== */
.auth-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-logo img {
    max-width: 180px;
    height: auto;
}

.auth-logo-light {
    display: none;
}

.auth-logo-dark {
    display: inline-block;
}

/* Dark mode support (if needed) */
[data-layout-mode="dark"] .auth-logo-light {
    display: inline-block;
}

[data-layout-mode="dark"] .auth-logo-dark {
    display: none;
}

/* ========================================
   Background Image Removal ONLY
   (Keep Skote theme colors intact)
   ======================================== */

/* Remove only background images - do NOT change colors */
.auth-full-bg {
    background-image: none !important;
}

.auth-full-bg .bg-overlay {
    background-image: none !important;
}

/* ========================================
   Form Container Polish
   ======================================== */

/* Form container polish - subtle card effect */
.auth-full-page-content .my-auto {
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Welcome text */
.auth-full-page-content h5.text-primary {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   Input Fields Styling
   ======================================== */

.auth-full-page-content .form-control {
    border: 1.5px solid #e2e5e8;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.auth-full-page-content .form-control:focus {
    border-color: #556ee6;
    box-shadow: 0 0 0 3px rgba(85, 110, 230, 0.15);
}

.auth-full-page-content .form-control::placeholder {
    color: #adb5bd;
}

/* Input group (password field with toggle) */
.auth-full-page-content .input-group .form-control {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.auth-full-page-content .input-group .btn-light {
    border: 1.5px solid #e2e5e8;
    border-left: none;
    border-radius: 0 8px 8px 0;
    color: #74788d;
    transition: all 0.2s ease;
}

.auth-full-page-content .input-group .btn-light:hover {
    color: #556ee6;
}

.auth-full-page-content .input-group:focus-within .btn-light {
    border-color: #556ee6;
}

/* Form labels */
.auth-full-page-content .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Checkbox styling */
.auth-full-page-content .form-check-input {
    border-radius: 4px;
    border: 1.5px solid #ced4da;
}

.auth-full-page-content .form-check-input:checked {
    background-color: #556ee6;
    border-color: #556ee6;
}

.auth-full-page-content .form-check-label {
    color: #74788d;
    font-size: 0.9rem;
}

/* ========================================
   Primary Button Styling
   ======================================== */

.auth-full-page-content .btn-primary {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(85, 110, 230, 0.35);
}

.auth-full-page-content .btn-primary:hover {
    box-shadow: 0 6px 16px rgba(85, 110, 230, 0.45);
    transform: translateY(-1px);
}

.auth-full-page-content .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(85, 110, 230, 0.3);
}

/* ========================================
   Alert Styling
   ======================================== */

.auth-full-page-content .alert-danger {
    border-radius: 8px;
}

/* Validation error text */
.auth-full-page-content .text-danger {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 1199.98px) {
    .auth-full-page-content .my-auto {
        box-shadow: none;
        padding: 1.5rem;
    }
}
