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

:root{
     --red:rgb(225, 193, 110);
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f4f4;
    color:var(--red);
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:40px;
}

.container{
    width:100%;
    max-width:700px;
}

.card{

    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    text-align:center;
}

h1{
    color: var(--red);
    margin-bottom:15px;
    font-size:2.3rem;
}

h2{
    color:#e76f51;
    margin-bottom:25px;
}

p{
    margin-bottom:20px;
    line-height:1.7;
}

form{
    margin-top:30px;
}

input,
textarea{

    width:100%;
    padding:15px;
    margin-bottom:18px;

    border:1px solid #ddd;
    border-radius:8px;

    font-size:16px;

    transition:.3s;
}

input:focus,
textarea:focus{

    outline:none;
    border-color:#1d3557;
}

button{

    width:100%;
    padding:16px;

    background: var(--red);
    color:white;

    border:none;
    border-radius:8px;

    cursor:pointer;

    font-size:17px;

    transition:.3s;
}

button:hover{

    background: black;
}

.divider{

    margin:40px auto;
    width:80%;
    height:1px;
    background:#ddd;
}

.partner{

    margin-bottom:20px;
}

.partner-button{

    display:inline-block;

    padding:15px 35px;

    background: var(--red);

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;
}

.partner-button:hover{

    background:black;
}

@media(max-width:700px){

    .card{

        padding:30px;
    }

    h1{

        font-size:1.9rem;
    }

    h2{

        font-size:1.3rem;
    }

}
