h2 {
    font-size: 55px;
    font-weight: 800;
    margin: 0px;
    margin-bottom:20px;
    color:#fff;
}

p{
    color:#fff;
    font-size: 20px;
    line-height: 25px;
}

.destaque{
    background: linear-gradient(90deg, #63C3CE, #32949f );
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.destaque2{
    background: linear-gradient(90deg, #3c959f, #1c717a );
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

img{
    width: 200px;
}

.divide1{
    width:50%;
    padding:30px;
    padding-left: 5%;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.divide2{
    width:50%;
    padding:30px;
    align-content: center;
    align-items: center;
}

body {
    background-image: url("imgs/banner-background-cadastro.WEBP");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-color: #f0f0f0;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    font-weight: 600;
    justify-self: center;
}

.campo {
    margin-bottom: 20px;
    position: relative; 
}


input[type="text"],
input[type="email"],
input[type="password"] {
    width: calc(100% - 30px);
    padding: 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
}

button[type="submit"] {
    width:100%;
    background: linear-gradient(90deg, #63C3CE, #32949f );
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

#verSenha {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

.popup {
    text-align: center;
    display: none; /* Nao excluir, faz o Popup nao aparecer de inicio */
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4);

}

    .head-popup{
        font-size:30px;
        color:#04152B!important;
        padding-bottom: 10px;
        border: solid #04152B;
        border-width: 0px 0px 1px 0px;
}

.popup-conteudo {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    width: 80%; 
    max-width: 500px; 
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    position: relative; 
}

.fechar-popup {
    color: #aaa;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
}

.fechar-popup:hover,
.fechar-popup:focus {
    color: #04152B;
    text-decoration: none;
    cursor: pointer;
}

#popup-dados {
    text-align: left; 
    margin-top: 20px;
}

#popup-dados p {
    margin-bottom: 10px;
}

#popup-dados strong {
    font-weight: bold;
    margin-right: 5px;
}

.logo-popup{
    padding: 15px;
    border-radius: 15px;
    margin-top: -65px;
    background-color: #fefefe;
}


/*    Responsividade Mobile        */

@media (max-width: 768px) {
    body {
        flex-direction: column;
        align-items: stretch;
        background-color:#04152B;
    }

    .divide1, .divide2 {
        width: 90%;
        padding: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .divide1 {
        padding-left: 20px;
    }

    img {
        width: 150px;
    }

    h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    .head-popup{
        font-size:20px;
}

    p {
        font-size: 18px;
        line-height: 24px;
    }

    .container {
        width: 90%;
        max-width: 400px;
        margin-left: 0;
        margin-right: 0;

    input[type="text"],
    input[type="email"],
    input[type="password"] {
        width: calc(100% - 24px);
        padding: 10px 12px;
        font-size: 15px;
    }

    button[type="submit"] {
        font-size: 18px;
        padding: 10px 15px;
    }

    #verSenha {
        right: 10px;
    }
}
}