.auth-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 15px;
}

.auth-box{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:16px;
    padding:26px;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
}

.auth-title{
    font-size:20px;
    font-weight:800;
    margin-bottom:18px;
    color:#2b2b2b;
    border-right:4px solid #e0bc1b;
    padding-right:10px;
}

.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:12px;
}

label{
    font-size:12px;
    color:#7d7d7d;
    margin-bottom:6px;
    font-weight:600;
}

input{
    padding:10px 12px;
    border-radius:10px;
    border:1px solid #ddd;
    outline:none;
    transition:0.2s;
    font-size:14px;
}

input:focus{
    border-color:#e0bc1b;
    box-shadow:0 0 0 3px rgba(224,188,27,0.15);
}

.btn-auth{
    width:100%;
    padding:12px;
    border:none;
    border-radius:12px;
    background:#e0bc1b;
    color:#2b2b2b;
    font-weight:800;
    cursor:pointer;
    transition:0.2s;
}

.btn-auth:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(224,188,27,0.25);
}

.auth-footer{
    margin-top:14px;
    font-size:13px;
    color:#7d7d7d;
    text-align:center;
}

.auth-footer a{
    color:#e0bc1b;
    font-weight:700;
    text-decoration:none;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.full{
    grid-column:span 2;
}

.message{
    background:#fff7d6;
    border:1px solid #e0bc1b;
    color:#7d7d7d;
    padding:10px;
    border-radius:10px;
    font-size:13px;
    margin-bottom:10px;
}