*{
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 13pt;
}
h2{
    font-size: 20pt !important;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('./tela-sistema.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
section{
    width: 60%;
}
section > div{
    width: 100%;
}
.img-logo-content{
    display: flex;
    justify-content: center;
    margin-bottom: 6vh;
}
.flex-column{
    flex-direction: column;
}
.flex-column > div{
    width: 100%;
    display: flex;
    justify-content: center;
}
.form-content{
    border: 1px solid rgba(255, 255, 255, 0.301);
    border-radius: 10px;
    padding: 20px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20vw;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
}
.form-content > div{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
}
.form-content > div > label{
    margin-right: 15px;
}
.form-content > div > input{
    border-radius: 8px;
    border: 2px solid black;
    color: black;
}
.form-content > button, .form-content > a{
    background: black;
    border: 2px solid white;
    border-radius: 6px;
    width: 100%;
    padding: 2% 0;
    margin: 4px 0;
    text-decoration: none;
    text-align: center;
    font-size: 12pt;
}
.form-content > .radius-content{
    width: 70%;
}
.form-content > div > .label-input-full-width{
    margin: 3px 0;
    text-align: center;
}
.input-full-width{
    height: 3vh;
}
.form-content > .callback-message{
    display: flex;
    justify-content: center;
    transition: all 2s;
}
.success-message{
    color: green;
}
.error-message{
    color: red;
}

@media (max-width: 1500px) {
    .form-content{
        width: 24vw;
    }
}

@media (max-width: 1200px) {
    .form-content{
        width: 35vw;
    }
}

@media (max-width: 1000px) {
    section{
        width: 100vw;
    }
    .form-content{
        width: 80vw;
        padding: 20px 30px;
    }
}