.xp-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(0,180,216,0.22);
    border-radius: 999px;
    background: rgba(0,180,216,0.10);
    color: #9eefff;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.xp-site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #eefcff;
    font-weight: 600;
    min-width: 0;
}

.xp-site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0,180,216,0.28);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,180,216,0.28) 0%, rgba(0,180,216,0.12) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 22px rgba(0,180,216,0.12);
    font-size: 0.95rem;
    font-weight: 700;
    color: #d9fbff;
}

.xp-site-brand__text {
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.xp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.xp-button:hover {
    transform: translateY(-1px);
}

.xp-button--primary {
    background: linear-gradient(135deg, #00b4d8 0%, #29d3f5 100%);
    color: #03131a;
    box-shadow: 0 18px 40px rgba(0, 180, 216, 0.28);
}

.xp-button--secondary {
    background: rgba(255,255,255,0.03);
    color: #edfdfd;
    border: 1px solid rgba(0,180,216,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.xp-button--ghost {
    width: auto;
    min-height: 44px;
    padding: 10px 18px;
    background: rgba(0,180,216,0.08);
    color: #dffcff;
    border: 1px solid rgba(0,180,216,0.18);
    border-radius: 12px;
    white-space: nowrap;
}

.xp-button--hero {
    width: auto;
    min-width: 180px;
    padding-left: 22px;
    padding-right: 22px;
}

.xp-button--primary:hover {
    background: linear-gradient(135deg, #18c6e8 0%, #4edfff 100%);
    box-shadow: 0 22px 48px rgba(0, 180, 216, 0.36);
}

.xp-button--secondary:hover {
    background: rgba(0,180,216,0.10);
    border-color: rgba(0,180,216,0.28);
    color: #f4feff;
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.10), inset 0 1px 0 rgba(255,255,255,0.05);
}

.xp-button--ghost:hover {
    background: rgba(0,180,216,0.14);
    border-color: rgba(0,180,216,0.28);
    color: #f4feff;
    box-shadow: 0 12px 28px rgba(0, 180, 216, 0.12);
}

.xp-header-link {
    color: #b8f4ff;
    font-size: 0.95rem;
    white-space: nowrap;
}

.xp-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xp-field label {
    color: #ddfbff;
    font-size: 0.92rem;
    font-weight: 500;
}

.xp-field input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(0,180,216,0.14);
    border-radius: 14px;
    background: rgba(7, 19, 26, 0.88);
    color: #f7feff;
    outline: none;
}

.xp-field input:focus {
    border-color: rgba(0,180,216,0.85);
    box-shadow: 0 0 0 4px rgba(0,180,216,0.14);
}

.xp-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b6dfe6;
    font-size: 0.9rem;
}

.xp-checkbox input {
    margin: 0;
    accent-color: #00b4d8;
}

.xp-login-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(0,180,216,0.10);
    border-radius: 24px;
    background: rgba(4, 12, 18, 0.84);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0,180,216,0.06);
    backdrop-filter: blur(18px);
}

.xp-login-card__head {
    margin-bottom: 22px;
}

.xp-login-card__eyebrow {
    margin: 0 0 8px;
    color: #76dcec;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.xp-login-card__title {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 2vw, 2.2rem);
    line-height: 1.1;
    color: #effeff;
}

.xp-login-card__text {
    margin: 0;
    color: #99c8d1;
    line-height: 1.65;
}

.xp-login-card__alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 107, 107, 0.28);
    border-radius: 14px;
    background: rgba(255, 107, 107, 0.08);
    color: #ffc0c0;
    font-size: 0.92rem;
}

.xp-login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.xp-login-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.xp-login-form__link,
.xp-login-card__footer a {
    color: #84ebff;
}

.xp-login-card__footer {
    display: flex;
    gap: 6px;
    margin-top: 20px;
    color: #8fb9c1;
    font-size: 0.92rem;
    flex-wrap: wrap;
}


.xp-logo {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}
