/* AirlinkMW Master Stylesheet
   Centralized for all subdomains 
   Standardized on NetWatch (Image 1) Layout
*/

:root {
    --primary-blue: #008cff;
    --soft-bg: #22a1ff;
    --light-gray: #f8f9fa;
    --border-color: #eee;
    --white: #ffffff;
    --text-muted: #6c757d;
}

/* Base Body Styles */
body { 
    background-color: var(--soft-bg) !important; 
    background-image: linear-gradient(180deg, var(--soft-bg) 0%, var(--white) 100%) !important; 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
}

/* Layout Cards */
.login-card, .profile-card { 
    background: var(--white); 
    border-radius: 30px; 
    padding: 40px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    width: 90%; 
    max-width: 420px; 
    text-align: center;
}

.profile-card { 
    max-width: 550px; 
    margin: 50px auto; 
    border-radius: 25px;
}

/* --- Buttons Section --- */

.btn-launch, .btn-update, .btn-sso { 
    border-radius: 12px !important; 
    padding: 12px; 
    border: none !important; 
    width: 100% !important; 
    font-weight: 600 !important; 
    text-decoration: none !important; 
    display: flex !important; 
    justify-content: center; 
    align-items: center; 
    transition: 0.3s;
    cursor: pointer;
}

/* Standard Buttons */
.btn-launch, .btn-update, .btn-sso { 
    background-color: var(--primary-blue) !important; 
    color: var(--white) !important; 
}
.btn-launch:hover, .btn-update:hover { opacity: 0.9; }

/* SSO Specific Button - Fixed to match Image 1 */
.btn-sso { 
    background-color: var(--primary-blue) !important; 
    color: var(--white) !important; 
    padding: 14px 20px !important; 
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, color 0.3s, filter 0.3s;
}
.btn-sso:hover { 
    transform: scale(1.02); 
    color: #000000 !important; 
    filter: brightness(1.1); 
}

/* Outline and Cancel Buttons */
.btn-outline { 
    background: var(--white); 
    color: var(--primary-blue); 
    border-radius: 12px; 
    padding: 12px; 
    border: 2px solid var(--primary-blue); 
    width: 100%; 
    font-weight: 600; 
    margin-top: 10px; 
    text-decoration: none; 
    display: inline-block; 
    text-align: center; 
    transition: 0.3s; 
}

.btn-cancel { 
    background: var(--light-gray); 
    color: var(--text-muted); 
    border-radius: 12px; 
    padding: 12px; 
    border: 1px solid var(--border-color); 
    width: 100%; 
    font-weight: 600; 
    margin-top: 10px; 
    text-decoration: none; 
    display: inline-block; 
    text-align: center; 
}

/* --- Form Elements --- */

.form-control { 
    border-radius: 10px; 
    background: var(--light-gray); 
    border: 1px solid var(--border-color); 
    padding: 12px; 
    width: 100%;
}

.iti { width: 100%; }

/* Password Toggle Logic */
.pass-group { position: relative; }
.toggle-password { 
    position: absolute; 
    right: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    cursor: pointer; 
    color: var(--text-muted); 
    z-index: 10; 
}

/* Utilities */
.letter-spacing-lg { letter-spacing: 5px; font-weight: bold; font-size: 1.5rem; }

.footer-text { 
    margin-top: 25px; 
    color: var(--white); 
    font-size: 0.85rem; 
    opacity: 0.9; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.1); 
}

/* Standardized Divider */
.border-top {
    border-top: 1px solid var(--border-color) !important;
    margin-top: 20px;
    padding-top: 20px;
}