* {
    margin: 2px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.logo img {
    width: 200px; 
    height: auto; 
}

nav {
    display: flex;
    background-color: rgba(255, 255, 255, 0.9); 
    justify-content: space-around; 
    align-items: center;
    position: fixed; 
    bottom: 0;
    width: 90%;
    border-radius: 30px;    
    padding: 10px 0; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); 
    z-index: 10; 
}

.navlinks {
    display: flex; 
    justify-content: space-around; 
    width: 100%; 
}

.navlinks li {
    list-style: none;
    margin: 0; 
    padding: 0 15px; 
}

.navlinks li a {
    text-decoration: none; 
    color: inherit; 
    display: flex; 
    align-items: center; 
}

.navlinks li ion-icon {
    font-size: 33px;
}

.navlinks li a:hover ion-icon {
    color: #008f17; 
}

.info-1 {
    color: var(--primeraly-black, #383c3e);
    text-align: center; 
    font-family: "Inter-Bold", sans-serif;
    font-size: 31px;
    line-height: 160%;
    letter-spacing: 0.2px;
    font-weight: 700;
    margin: 20px 0; 
}

.msg-1 {
    color: var(--greyline, #737b7d);
    text-align: center; 
    font-family: "Inter-Regular", sans-serif;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.3px;
    font-weight: 400;
    margin-bottom: 20px; 
}

.form-control {
    background: #f2f3f3;
    border-radius: 7px;
    width: 82%;
    margin: 10px auto;
    padding: 10px;
    position: relative;
}

.placeholder {
    color: var(--dark-dark-2, #1a1e1e);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

input[type="text"],
input[type="number"],
textarea,
input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    height: 40px; 
}

textarea {
    resize: none;  
    height: 60px;  
}

.drag-and-drop-field {
    border-radius: 7px;
    border: 1px dashed var(--input-text, #8e8e8e);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 82%;
    margin: 10px auto;
}

.cadastrar {
    text-align: center; /* Centraliza o conteúdo dentro do div */
    margin-top: 20px; /* Espaçamento acima do botão */
}

.cadastrar button {
    background-color: green; /* Fundo verde */
    color: white; /* Letras brancas */
    border: none; /* Remove bordas padrão */
    border-radius: 25px; /* Cantos arredondados */
    padding: 10px 20px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    cursor: pointer; /* Muda o cursor ao passar sobre o botão */
    transition: background-color 0.3s; /* Efeito de transição */
}

.cadastrar button:hover {
    background-color: darkgreen; /* Cor de fundo ao passar o mouse */
}