@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

html, body {
    background-color: #3E546C;
    padding: 10px 0px;
    font-family: 'Open Sans';
    color: #666666;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
  }

.container {
    display: flex;
    flex-wrap: wrap;
}

.logo {
    margin: 0 auto;
    display: inline-flex;
    width: 100%;
    justify-content: center; 
}

.form {
    width: 775px;
    background-color: white;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 40px 50px;
}

.textinfo {
    text-align: center;
    font-size: 20px;
    font-weight: 200;
    margin: 15px 0px;
}

.infocliente {
    text-align: center;
    width: 65%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 17px;
    color: #555555;
    line-height: 17px;
    margin-bottom: 15px;
}

.compra-aprovada h1 {
    text-align: center;
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 15px 0px;
}

.compra-aprovada span {
    text-align: center;
    width: 65%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 17px;
    color: #555555;
    line-height: 17px;
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid lightgray;
    height: 40px;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Open Sans';
}

::placeholder {
    color: #CCCCCC;
}

textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid lightgray;
}

label {
    padding: 20px 0px;
    font-size: 15px;
    line-height: 15px;
}

.one-column  {
    width: 100%;
    margin-bottom: 20px;
}

.two-column {
    width: calc(50% - 5px);
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 15px 0px;
    border: solid 1px #F98014;
    background-color: white;
    color: #F98014;
    border-radius: 50px;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

button:hover {
    transition: 0.3s;
    background-color: #F98014;
    color: #666666;
    cursor: pointer; 
}

.row {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.c-40 {
    width: calc(40% - 5px);
    margin-bottom: 20px;
}

.c-20 {
    width: calc(20% - 5px);
    margin-bottom: 20px;
}

/*Mobile Classes*/

@media screen and (max-width: 768px) {
    .container {
        display: initial;
    }

    .row {
        display: block;
        width: 100%;
    }

    .form {
        width: 100%;
        background-color: white;
        margin: 0 auto;
    }

    .infocliente {
        text-align: center;
        width: 100%;
        margin: 0 auto;
        font-weight: 400;
        font-size: 17px;
        color: #555555;
        line-height: 17px;
        margin-bottom: 15px;
    }

    .two-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .c-40 {
        width: 100%;
        margin-bottom: 20px;
    }

    .c-20 {
        width: 100%;
        margin-bottom: 20px;
    }
}