/* APP */

.app{
    width:min(1100px,94%);
    margin:40px auto;
}

/* BANNER */

.beta-banner{
    width:100%;

    background:#111111;
    color:white;

    border-radius:28px;

    padding:38px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    margin-bottom:30px;
}

.beta-banner span{
    display:inline-flex;

    background:rgba(255,255,255,.12);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    margin-bottom:16px;
}

.beta-banner h2{
    font-size:34px;
    margin-bottom:12px;
}

.beta-banner p{
    max-width:700px;

    color:rgba(255,255,255,.72);

    line-height:1.6;
}

/* FORM */

.form-card{
    background:white;

    border:1px solid #e7e7e7;
    border-radius:28px;

    padding:34px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

.form-card h2{
    font-size:28px;
    margin-bottom:26px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.field{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.field label{
    font-size:14px;
    font-weight:700;
}

.field input{
    width:100%;
    height:54px;

    border:1px solid #dddddd;
    border-radius:16px;

    padding:0 18px;

    font-size:15px;

    outline:none;

    transition:.2s ease;
}

.field input:focus{
    border-color:#111111;
}

/* BUTTON */

.submit-btn{
    margin-top:30px;

    width:100%;
    height:58px;

    border:none;
    border-radius:18px;

    background:#111111;
    color:white;

    font-size:16px;
    font-weight:800;

    cursor:pointer;

    transition:.25s ease;
}

.submit-btn:hover{
    opacity:.92;
    transform:translateY(-2px);
}

/* SUCCESS */

.success{
    margin-top:22px;

    background:#efffed;
    border:1px solid #b8ebb1;

    color:#22851c;

    padding:16px 18px;

    border-radius:16px;

    font-size:14px;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:850px){

    .beta-banner{
        flex-direction:column;
        align-items:flex-start;
    }

    .grid{
        grid-template-columns:1fr;
    }

}