*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#0f172a;
    color:#fff;
}

.login-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-card{

    width:420px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.logo-area{

    text-align:center;

    margin-bottom:35px;

}

.logo-area h1{

    color:#6C63FF;

    font-size:34px;

    margin-bottom:8px;

}

.logo-area p{

    color:#bfc9d4;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

}

.form-group input{

    width:100%;

    padding:14px;

    border-radius:12px;

    border:none;

    outline:none;

    background:#1e293b;

    color:#fff;

}

.form-group input:focus{

    border:2px solid #6C63FF;

}

button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    background:#6C63FF;

    color:#fff;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#7d74ff;

    transform:translateY(-2px);

}

#message{

    margin-top:20px;

    text-align:center;

    font-size:14px;

    color:#ffb4b4;

}

@media(max-width:500px){

.login-card{

width:100%;

padding:25px;

}

.logo-area h1{

font-size:28px;

}

}

/* =========================================
   SIGMA SPEAK LOGIN LEGAL LINKS
   ========================================= */

.login-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
}

.login-legal-links a {
    color: #bfc9d4;
    text-decoration: none;
}

.login-legal-links a:hover,
.login-legal-links a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

@media(max-width:500px){
    .login-legal-links {
        gap: 8px 12px;
    }
}

/* =========================================
   STEP 75-C6 FORGOT PASSWORD
   ========================================= */

.forgot-password-toggle,
.forgot-password-cancel {
    margin-top: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #a8a2ff;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.forgot-password-toggle {
    display: block;
    width: auto;
    margin: 14px auto 0;
}

.forgot-password-toggle:hover,
.forgot-password-toggle:focus-visible,
.forgot-password-cancel:hover,
.forgot-password-cancel:focus-visible {
    background: transparent;
    color: #ffffff;
    transform: none;
}

.forgot-password-panel {
    margin-top: 22px;
    padding-top: 22px;
    border-top:
        1px solid
        rgba(255,255,255,.12);
}

.forgot-password-panel[hidden],
#forgotPasswordResetForm[hidden] {
    display: none;
}

.forgot-password-panel h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
}

.forgot-password-help {
    margin-bottom: 20px;
    color: #bfc9d4;
    font-size: 13px;
    line-height: 1.55;
}

.forgot-password-message {
    min-height: 20px;
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    line-height: 1.45;
}

.forgot-password-cancel {
    width: 100%;
}

button:disabled {
    cursor: not-allowed;
    opacity: .65;
    transform: none;
}
