@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0A0D18;
    color: #ffffff;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto;
}


h1 {
    padding: 100px 0 0 0;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.7px;
}

p {
    color: #FFFFFFA3;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    padding: 50px 10%;
}


form {
    padding: 10px 10%;
}


.campo {
    background-color: #ffffff;
    width: 50%;
    height: 50px;
    border: none;
    border-radius: 5px;
    text-align: left;
    padding-left: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #050030a3;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.btn {
    width: 20%;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: #B68E31;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

.btn:hover {
    transition: background 0.5s ease;
    background-color: #078821;
}

h3 {
    padding: 50px 0;
    font-family: "Roboto", Sans-serif;
    color: #B68E31;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}


@media only screen and (max-width: 760px) {


    h1 {
        padding: 50px 0 0 0;
    }

    p {
        font-size: 0.8rem;
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .campo {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}