*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#000;
    font-family:Arial,Helvetica,sans-serif;

}

.hero{

    position:relative;

    width:100%;
    max-width:1600px;

    margin:0 auto;

}

.hero-image{

    width:100%;
    height:auto;
    display:block;

}

.signup{

    position:absolute;

    left:50%;
    top:75%;

    transform:translateX(-50%);

    width:680px;

}

.row{

    display:flex;
    gap:20px;

}

.field{

    flex:1;

}

.field label{

    display:block;

    color:#fff;

    font-size:13px;
    font-weight:bold;

    margin-bottom:8px;

}

.field input{

    width:100%;
    height:48px;

    border:none;
    border-radius:6px;

    padding:0 16px;

    font-size:16px;

}

button{

    width:100%;

    margin-top:20px;

    height:56px;

    border:none;

    border-radius:6px;

    background:#e01820;

    color:#fff;

    font-size:28px;
    font-weight:bold;

    cursor:pointer;

}

button:hover{

    background:#c5161d;

}

.footer{

    margin-top:18px;

    color:#ddd;

    text-align:center;

    font-size:14px;

}

.website-field{

    position:absolute;
    left:-9999px;

}

@media(max-width:900px){

.signup{

    position:static;

    transform:none;

    width:90%;

    margin:-50px auto 40px;

}

.row{

    flex-direction:column;

}

button{

    font-size:22px;

}

}




/* Result page */

.result-page{

    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:30px;

}

.result-card{

    width:100%;
    max-width:650px;

    background:#fff;

    border:1px solid #222;

    border-radius:10px;

    padding:50px;

    text-align:center;

}

.result-card h1{

    color:#030303;
    margin:25px 0;

}

.result-card p{

    color:#777;
    line-height:1.7;
    margin-bottom:35px;

}

.result-card .logo{

    width:220px;

}

.result-card .button{

    display:inline-block;

    padding:16px 34px;

    background:#e01820;

    color:#fff;

    text-decoration:none;

    border-radius:6px;

    font-weight:bold;

}

.result-card .button:hover{

    background:#c5161d;

}