@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 0;
}

.termosPopup {
    display: none;
    position: fixed;
    width: 800px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-align: center;
    border-radius: 10px;
}

.termos__accept {
    margin: 15px 0 5px 0;
}

#termosOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9998;
}

p {
    font-size: 16px;
    padding: 5px;
    text-align: justify;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 800px;
    color: #6e6d6d;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

h1 {
    margin-top: 20px;
}

h2 {
    width: calc(100% - 10px);
    font-weight: 400;
    font-style: normal;
    text-align: center;
    border: 1px solid black;
    border-radius: 20px;
    border-style: none;
    padding: 5px;
    background-color: #2165db;
    color: #fff;
    margin: 10px 0;
}

h3 {
    margin: 20px;
    color: #ff0000;
}

input {
    font-size: 15px;
}

.form__content {
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 25px;
    margin-top: 10px;
    width: 750px;
}

.form__field label {
    margin: 20px;
}

.form__field input {
    display: flex;
    width: 700px;
    border: 1px solid #939395;
    border-radius: 10px;
    height: 40px;
    color: #939395;
    padding-left: 12px;
    margin: 5px 15px 10px 15px;
}

.import {
    display: flex;
    justify-content: center;
    align-items: center;
}

#animais {
    width: 50px;
    text-align: center;

}

.animais__field input,
.gta__field input {
    width: 500px;
    border-radius: 10px;
    height: 30px;
    margin: 11px 10px 0 5px;
}

.animais__field label,
.gta__field label {
    margin-right: 15px;
}

.date input {
    padding: 1px;
}

.gta__content input {
    width: 85px;
    color: #939395;
    ;
}

.form__animais {
    display: flex;
}

.animais__field {
    display: flex;
    margin: 15px 20px 15px 80px
}

.animais__field label {
    margin: 20px 1px;
}

.animais__field input {
    width: 120px;
}

.form__gta {
    text-align: center;
}

.form__gta input {
    border-radius: 10px;
    height: 30px;
    width: 50px;
    text-align: center;
}

.gta__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.gta__content input {
    border: 1px solid #c6c6c6;
    border-radius: 7px;
    margin: 2px;
    width: 90px;
}

.gta__content ::placeholder {
    padding: 6px;
}

#gtasContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}

.gta__row label {
    margin: 0;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
}

.file-input-wrapper label,
.btn {
    border: 2px solid #2165db;
    color: #2165db;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}

.file-input-wrapper label:hover {
    background-color: #2165db;
    color: #fff;
}

.btn.invalid {
    background-color: #ff7575;
    color: #fff;
}

.form__btn {
    display: flex;
    width: 600px;
    align-items: center;
    justify-content: center;
}

.btn {
    background-color: #2165db;
    color: #fff;
    transition: 0.3s ease;
    width: 150px;
}

.btn:hover {
    transform: scale(1.04);
}

.disable {
    filter: opacity(0.5);
}


.field__required {
    color: #ff0000;
}

.field__invalid {
    border: 1px solid #ff0000 !important;
}

.import__animais {
    background-color: #2165db;
}

.field__example {
    color: #ff0000;
    font-size: 15px;
    margin: 2px;
}

.field__example:hover {
    text-decoration: underline;
    cursor: pointer;
}

.numeros {
    line-height: 0.5;
}

#popup {
    width: 350px;
    position: absolute;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 10px;
}