@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');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.sub-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: space-around;
}

.sub-header h1 {
    font-size: 2rem;
    font-weight: 400;
}

.container {
    flex-grow: 10;
    /* max-width: 960px; */
    width: 80%;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.container-model{
    display: flex;
    justify-content: center;
    max-width: 960px;
    height: 100vh;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}



.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group select {
    appearance: none;
    /* Remove estilo padrão do select */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M7 10l5 5 5-5z"/></svg>');
    /* Adiciona uma seta */
    background-repeat: no-repeat;
    background-position: right .7rem top 50%;
    background-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    text-align: center;
}

.btn {
    width: 50%;
    min-width: 50%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-color: #007bff;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 20px;
}

.btn:hover {
    background-color: #007bff;
}

footer {
    background-color:#007bff;;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Estilos específicos para telas menores */
@media (max-width: 768px) {
    .sub-header {
        flex-direction: column;
    }

    .sub-header img {
        margin-bottom: 1rem;
    }

    .sub-header h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Style for the file input */
.file-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9;
    color: #555;
}

.file-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.file-input::file-selector-button {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.file-input::file-selector-button:hover {
    background-color: #0056b3;
}

.form-term{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-term > input{
    width: 20px;
    height: 20px;
}

model {
    background-color: #fff;
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    height: 100vh;
}

.model h1 {
    color: green;
    font-size: 40px;
    margin-bottom: 20px;
}

.model h2 {
    color: #333;
    font-size: 30px;
    text-align: center;
}

.btn-capture {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-capture:hover {
    background-color: #0056b3;
}