/* ===============================
    Login Page - FINAL CSS (CSS ONLY)
================================ */

/* 1. CENTER THE BOX */
.path-user {
    background-color: #ffffff !important;
}

.path-user .layout-container, 
.path-user main, 
.path-user #main-wrapper,
.path-user .region-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important; 
    width: 100vw !important;
    margin: 0 auto !important;
}

/* 2. THE BLUE BOX */
.user-login-form {
    background: linear-gradient(180deg, #1e3a8a 0%, #0f172a 100%) !important;
    padding: 40px !important;
    border-radius: 15px !important;
    width: 100% !important;
    max-width: 400px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
    position: relative !important; /* needed for positioning */
}

/* 3. INPUTS & LABELS */
.user-login-form label {
    color: #ffffff !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.user-login-form input:not([type="submit"]) {
    background-color: #ffffff !important; 
    color: #000000 !important;            
    border: 2px solid #cbd5e1 !important; 
    padding: 12px !important;
    width: 100% !important;
    border-radius: 6px !important;
    margin-bottom: 15px !important;
}

/* 4. LOGIN BUTTON */
.user-login-form .form-actions {
    margin-top: 20px !important;
}

.user-login-form input[type="submit"] {
    background-color: #5c67f2 !important;
    color: white !important;
    width: auto !important;
    padding: 10px 25px !important;
    font-weight: bold !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 6px !important;
}

/* ===============================
   ✅ FORGOT PASSWORD (REAL LINK)
================================ */

/* Show hidden Drupal link */
.path-user .item-list {
    display: block !important;
    position: absolute !important;
    bottom: 45px !important;  /* adjust if needed */
    right: 40px !important;
}

/* Remove bullets */
.path-user .item-list ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style the link */
.path-user .item-list a[href*="password"] {
    color: #ffffff !important;
    font-size: 14px !important;
    text-decoration: underline !important;
    white-space: nowrap !important;
}

/* ===============================
   HIDE EXTRA UI
================================ */

.path-user header,
.path-user .navbar,
.path-user .tabs, 
.path-user h1.page-title,
.path-user .help {
    display: none !important;
}

/* ===============================
    END
================================ */