/* Password Gate Styles - Premium Dark Aesthetic */
#password-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b141a; /* Very dark slate */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

#password-gate .card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    color: #1a1a1b;
}

#password-gate h2 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
    color: #091e42;
}

#password-gate p.lead {
    margin: 0 0 24px 0;
    font-size: 15px;
    color: #42526e;
    line-height: 1.5;
}

#password-gate .form-group {
    margin-bottom: 20px;
}

#password-gate input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ebecf0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
}

#password-gate input[type="password"]:focus {
    border-color: #0065ff;
    box-shadow: 0 0 0 3px rgba(0, 101, 255, 0.1);
}

#password-gate .submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #00665c; /* Teal from screenshot */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

#password-gate .submit-btn:hover {
    background-color: #004d45;
}

#password-gate .error-msg {
    color: #de350b;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

/* Hide app content when gate is active */
body.gated #sidebar, 
body.gated #main {
    display: none !important;
}

body.authenticated #password-gate {
    display: none !important;
}
