* {
    margin: 0 auto;
    padding: 0;
}

html,
body {
    background-color: #151515;
}

input {
    width: 396px;
    height: 58px;
    outline: none;
    font-size: 20px;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 12px;
    border: none;
    border-radius: 2px;
}

input:focus {
    outline: none;
}

.form {
    background-color: #151515;

    box-sizing: border-box;
    border-radius: 20px;
}

.pointer {
    cursor: pointer;
}

.text-preencha {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 268px;
}

.form-web {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    input {
        width: 100%;
        height: 47.3px;
    }

    .btn-form {
        width: 100%;
    }

    .text-preencha {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 140px;
    }


}

#loding-body {
    display: none;
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000cb;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}