* {
    padding: 0px;
    margin: 0px;
    font-size: 1.5vw;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    background-color: #f0f0f0;
    flex-direction: column;
}


header {
    background-color: #082a36;
    color: #fff;
    padding: 0.5vw;
    backdrop-filter: blur(18px);
    webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
    color: none;
}

h1 {
    width: 10vw;
    font-size: 3vw;
    margin-left: 4vw;
    color: white;
}


.lay {
    display: flex;
    flex-direction: row;

}

.divs {
    width: 100%;
    padding: 8vw 5vw;
}

section {
    height: 100vh;
}


.cadastral.divs {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arts.divs {
    color: white;
    text-transform: uppercase;
    max-width: 35vw;
    background: linear-gradient(90deg, #000000ab, transparent);
  
}

.arts>div>h2 {
    font-size: 3vw;
    text-shadow: 0px 0px 11px black;
    font-weight: bold;
}

.arts>div>span {
    font-size: 1.8vw;
    text-shadow: 0px 0px 11px black;

}

.arts>div>span:nth-child(3) {
    display: block;
    margin-top: 5vw;
    font-size: 1.3vw;
    
}

.lay {
    background-image: url(./../imgs/img-cadastro.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

form, .confirmed {
    background: #ffffffc4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 40vw;
    align-items: center;
}

label {
    margin-top: 10px;
    display: block;
}

input, .selectPlano {
    width: 35vw;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    outline: none;
}

.submiterCad {
    width: 35vw;
    padding: 10px;
    background-color: #21829f;
    color: white;
    border: none;
    border-radius: 4px;
    margin-top: 15px;
    cursor: pointer;
}

.submiterCad:hover {
    background-color: #12485d;
}