@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans&display=swap');

:root {
    --border-radius-default: 6px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    width: 100%;
    padding: 10px;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.05);
    user-select: none;
}

.header h3 {
    margin-top: 10px;
}

.form {
    width: 90%;
    max-width: 1200px;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    margin-top: 50px;
    margin-bottom: 10px;
    display: none;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input,
.textarea {
    font-size: 14px;
    width: 100%;
    padding: 8px;
    border-radius: var(--border-radius-default);
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
}

.textarea {
    resize: none;
    height: 100px;
}

.input-label {
    width: 100%;
    font-weight: 500;
}

.btn-enviar {
    background-color: rgb(0, 123, 255);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-default);
    cursor: pointer;
}

.termos-texto {
    text-align: justify;
}

.pessoal {
    display: none;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.082);
    display: none;

}

.loading-submit {
    width: 50px;
    height: 50px;
    border: 10px solid rgb(0, 123, 255);
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }
    to {

        transform: rotate(360deg);
    }
}