/*=========================================
  Register Page
=========================================*/

body{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
    padding:var(--space-5);
    background:#FAFAFA;
}

.register-wrapper{
    width:100%;
    max-width:460px;
}

.register-card{
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-sm);
    padding:40px;
}

.logo{
    font-size:var(--text-3xl);
    font-weight:var(--fw-bold);
    letter-spacing:-0.03em;
    margin-bottom:8px;
}

.subtitle{
    font-size:var(--text-lg);
    font-weight:var(--fw-semibold);
    margin-bottom:8px;
}

.description{
    color:var(--color-text-light);
    line-height:1.6;
    margin-bottom:32px;
}

#result{
    margin-top:16px;
    min-height:20px;
    color:var(--color-danger);
    white-space:pre-wrap;
    font-size:var(--text-sm);
}

.footer{
    margin-top:32px;
    text-align:center;
    color:var(--color-text-light);
    font-size:13px;
}

@media(max-width:480px){

    body{
        padding:20px;
    }

    .register-card{
        padding:28px;
    }

}