* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', SegoeUI, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background-color: #f2f2f2;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ============================================
   LANDING PAGE
   ============================================ */
.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.landing-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    width: 100%;
    text-align: left;
}

.landing-logo {
    margin-bottom: 20px;
}

.landing-title {
    font-size: 22px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 16px;
}

.landing-alert-box {
    background-color: #fffbf0;
    border: 1px solid #fce8b3;
    padding: 10px 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: 2px;
}

.landing-alert-box span {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.landing-info {
    font-size: 13.5px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.45;
}

.btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

.landing-signin-btn {
    padding: 8px 18px;
    background-color: #0067b8;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
}

.landing-signin-btn:hover {
    background-color: #005da6;
}

.landing-security {
    margin-top: 20px;
    font-size: 11.5px;
    color: #616161;
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-footer {
    position: fixed;
    bottom: 12px;
    right: 20px;
    font-size: 11px;
    color: #333;
}

.landing-footer-links {
    display: flex;
    gap: 16px;
}

.landing-footer-links a {
    color: #333;
    text-decoration: none;
}

.landing-footer-links a:hover {
    text-decoration: underline;
}

/* ============================================
   SIGN IN PAGE (Matches Reference)
   ============================================ */
.signin-page, .password-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.signin-container, .password-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signin-card, .password-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 44px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* Inline Card Header */
.card-brand-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.brand-tagline {
    font-size: 11px;
    color: #707070;
    font-weight: 400;
}

.signin-title, .password-title {
    font-size: 24px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 2px;
}

.signin-subtitle, .password-email-display {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.signin-input-group {
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
}

.signin-input-group input, .password-input-wrapper input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s;
}

.signin-input-group input:focus, .password-input-wrapper input:focus {
    border-color: #0067b8;
    box-shadow: 0 0 0 1px #0067b8;
}

.signin-input-group input::placeholder {
    color: #707070;
}

.input-subtext {
    font-size: 11px;
    color: #707070;
    margin-top: 4px;
    margin-bottom: 18px;
}

/* Action Links Row */
.signin-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.signin-create-account, .signin-options-link, .password-forgot, .back-link {
    color: #0067b8;
    font-size: 13px;
    text-decoration: none;
}

.signin-create-account:hover, .signin-options-link:hover, .password-forgot:hover, .back-link:hover {
    text-decoration: underline;
}

/* Next Button Row */
.signin-button-row {
    display: flex;
    justify-content: flex-end;
}

.signin-next-btn, .password-signin-btn {
    padding: 8px 30px;
    background-color: #0067b8;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.signin-next-btn:hover, .password-signin-btn:hover {
    background-color: #005da6;
}

/* Outside Terms Disclaimer */
.signin-terms-outside {
    margin-top: 18px;
    font-size: 11px;
    color: #707070;
    text-align: center;
}

.signin-terms-outside a {
    color: #707070;
    text-decoration: underline;
}

/* Footers */
.signin-footer, .password-footer {
    position: fixed;
    bottom: 12px;
    right: 20px;
    font-size: 11px;
    color: #333;
}

.signin-footer-links, .password-footer-links {
    display: flex;
    gap: 12px;
}

.signin-footer-links a, .password-footer-links a {
    color: #333;
    text-decoration: none;
}

.separator {
    color: #999;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.password-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

/* Activate Windows Watermark */
.activate-windows-watermark {
    position: fixed;
    bottom: 35px;
    right: 20px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.2);
    text-align: left;
    pointer-events: none;
    line-height: 1.25;
}

.activate-windows-watermark span {
    font-size: 13px;
}