.ps-auth-shell {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 50% 20%, rgba(67, 214, 255, 0.16), transparent 22rem),
        radial-gradient(circle at 18% 80%, rgba(85, 112, 255, 0.12), transparent 20rem),
        linear-gradient(180deg, #020817 0%, #071326 100%);
    color: #eef8ff;
}

.ps-auth-card {
    width: min(100%, 29rem);
    border: 1px solid rgba(159, 235, 255, 0.18);
    border-radius: 1.25rem;
    padding: clamp(1.35rem, 4vw, 2rem);
    background: rgba(5, 16, 36, 0.76);
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}

.ps-auth-brand {
    margin-bottom: 1.4rem;
}

.ps-auth-brand span {
    display: block;
    color: #67e8f9;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.ps-auth-brand strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1.35rem;
    color: #fff;
}

.ps-auth-card h1 {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 2.35rem);
    line-height: 1.06;
    font-weight: 760;
    letter-spacing: 0;
    color: #fff;
}

.ps-auth-card p {
    margin: 0.65rem 0 0;
    color: rgba(222, 240, 255, 0.72);
    line-height: 1.6;
}

.ps-auth-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.ps-auth-field {
    display: grid;
    gap: 0.42rem;
}

.ps-auth-field label {
    color: rgba(235, 248, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 650;
}

.ps-auth-field input {
    width: 100%;
    border: 1px solid rgba(148, 211, 255, 0.2);
    border-radius: 0.85rem;
    padding: 0.85rem 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ps-auth-field input::placeholder {
    color: rgba(221, 235, 255, 0.36);
}

.ps-auth-field input:focus {
    border-color: rgba(103, 232, 249, 0.68);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.ps-auth-error,
.ps-auth-card .errorlist {
    margin: 0;
    border: 1px solid rgba(251, 113, 133, 0.26);
    border-radius: 0.85rem;
    padding: 0.75rem 0.85rem;
    background: rgba(127, 29, 29, 0.28);
    color: #fecdd3;
    font-size: 0.9rem;
    list-style-position: inside;
}

.ps-auth-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, #67e8f9, #5b8dff);
    color: #02101f;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 1rem 2.2rem rgba(34, 211, 238, 0.18);
    transition: transform 160ms ease, filter 160ms ease;
}

.ps-auth-button:hover,
.ps-auth-button:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.08);
    outline: none;
}

.ps-auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.15rem;
}

.ps-auth-links a {
    color: #8eefff;
    font-weight: 650;
    text-decoration: none;
}

.ps-auth-links a:hover,
.ps-auth-links a:focus-visible {
    color: #fff;
    outline: none;
}
