html {
    touch-action: manipulation;
}
  
:root {
    --amarelo-escuro: 224, 186, 79;
    --amarelo-claro: 224, 196, 117;
    --verde-card: 40, 41, 34;
    --preto: 0, 0, 0;
    --swal-color: 56, 57, 48;
    --cinza: 88, 88, 84;
    --bg: 244, 244, 244;
    --verde: 29, 209, 161;

    --fz-23: 23px;
    --fz-21: 21px;
    --fz-19: 19px;
    --fz-17: 17px;
    --fz-15: 15px;
    --fz-13: 13px;
    --fz-11: 11px;
    --fz-10: 10px;
    --fz-9: 9px;

    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;
    --fw-400: 400;
    --fw-300: 300;
    --fw-200: 200;
}

*:not(input):not(textarea):not(div) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check-input input:checked{
    background-color: #1dd1a1 !important;
}

*:focus { outline: none !important; box-shadow: none !important; border: none !important; }
*:active { outline: none !important; box-shadow: none !important; border: none !important; }

::placeholder { color: #d4d4d4; }
::-webkit-input-placeholder { color: #d4d4d4; }
::-moz-placeholder { color: #d4d4d4; }
:-ms-input-placeholder { color: #d4d4d4; }
:-moz-placeholder { color: #d4d4d4; }

h2 {
    font-size: 20px;
    font-weight: 600;
}

b {
    font-weight: 500;
}

div::-webkit-scrollbar { display: none; }

input:not([type=checkbox]), textarea {
    border: none;
    box-shadow: none;
    font-weight: var(--fw-300);
    border-radius: 10px;
    width: 100%;
    display: inline-block;
    height: 40px; 
    padding: 15px;
}

strong { font-weight: 500; }

a { color: #242424 !important; }

hr {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #d9d9d9;
}

@font-face { font-family: Sora; src: url('../fonts/sora/Sora-ExtraBold.ttf'); font-weight: 700; }
@font-face { font-family: Sora; src: url('../fonts/sora/Sora-Bold.ttf'); font-weight: 600; }
@font-face { font-family: Sora; src: url('../fonts/sora/Sora-SemiBold.ttf'); font-weight: 500; }
@font-face { font-family: Sora; src: url('../fonts/sora/Sora-Medium.ttf'); font-weight: 400; }
@font-face { font-family: Sora; src: url('../fonts/sora/Sora-Regular.ttf'); font-weight: 300; }
@font-face { font-family: Sora; src: url('../fonts/sora/Sora-Light.ttf'); font-weight: 200; }

body {
    font-family: 'Sora', sans-serif;

    background: rgba(var(--bg));
    color: rgba(var(--cinza));
    line-height: 1.3;
    font-size: 14px;
    font-weight: 300;
}

.content {
    width: 40vw;
    max-width: 80vw;
    margin: 50px auto;
}

.btn-primary { 
    background: rgba(var(--verde));
    border-color: rgba(var(--verde));
}

label {
    font-weight: 600;
    margin-bottom: 10px;
}

.texto {
    font-size: 16px;
    font-weight: 300;
    margin-top: 20px;
}

.texto > * {
    margin-top: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check > * { 
    margin: 0 !important;
    font-size: 14px;
    font-weight: 400;
} 

.form-group { margin-bottom: 20px; }

.header {
    width: 100%;
    margin: auto;
    height: 150px;
    background-color: rgba(var(--verde));
    color: rgba(var(--bg));
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.divErro {
    margin-bottom: 20px;
    font-weight: 400;
    color: rgb(179, 8, 8);
}

.logo {
    width: 50px;
}

.tituloSucesso {
    font-size: 25px;
    font-weight: 600;
}

.corpoSucesso {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
    color: #8d8d8d;
}

@media only screen and (max-width: 1000px) {
    .content {
        width: 60vw;
    }
}

@media only screen and (max-width: 700px) {
    .content {
        width: 80vw;
    }
}