/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Arial', sans-serif;
    text-decoration:none;
    list-style:none;
}

body{
    background:#84B6E3;
}

img{
    max-width:100%;
    display:block;
}

/* ===== TOPO ===== */

.topo{
    width:100%;
    height:70px;
    background:#002844;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 28px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    font-size:22px;
    font-weight:bold;
}

.shield-icon{
    font-size:28px;
}

.btn-topo{
    background:#0B46C4;
    color:white;
    padding:12px 24px;
    border-radius:10px;
    font-size:16px;
    font-weight:bold;
    transition:0.3s;
}

.btn-topo:hover{
    background:#08379b;
}

/* ===== BANNER ===== */

.banner{
    width:100%;
    padding:14px 14px 0 14px;
}

.banner img{
    width:100%;
    height:100px; /* aumentei a altura */
    object-fit:cover;
    object-position:center;
}

/* ===== CONTAINER ===== */

.container-cadastro{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:18px;
    gap:40px;
}

/* ===== LADO ESQUERDO ===== */

.cadastro-esquerda{
    width:58%;
}

.cadastro-esquerda h2{
    font-size:38px;
    font-weight:bold;
    margin-bottom:6px;
}

.subtitulo{
    font-size:16px;
    color:#5D5D5D;
    font-weight:bold;
    margin-bottom:18px;
}

/* ===== CARD CADASTRO ===== */

.card-cadastro{
    width:100%;
    background:#5fa0d9;
    border-radius:14px;
    padding:22px;
    margin-bottom:18px;
}

.card-cadastro label{
    display:block;
    font-size:18px;
    font-weight:bold;
    margin-bottom:6px;
    margin-top:14px;
}

.card-cadastro input{
    width:100%;
    height:34px;
    border:none;
    border-radius:6px;
    padding-left:10px;
    font-size:15px;
    outline:none;
}

/* ===== RESPONSÁVEL ===== */

.titulo-responsavel{
    font-size:22px;
    font-weight:bold;
    margin-bottom:12px;
}

/* ===== LADO DIREITO ===== */

.cadastro-direita{
    width:40%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
}
.imagem-cadastro{
    width:100%;
    max-width:420px; 
    height:430px; 
    object-fit:cover;
    border-radius:0;
}

/* ===== BOTÃO VOLTAR ===== */

.btn-voltar{
    background:#5c8df6;
    padding:12px 24px;
    border-radius:12px;
    color:black;
    font-size:16px;
    font-weight:bold;
    box-shadow:0 3px 6px rgba(0,0,0,0.2);
    transition:0.3s;
}

.btn-voltar:hover{
    background:#4b7ce6;
}

/* ===== ÁREA INFERIOR ===== */

.bottom-cadastro{
    display:flex;
    align-items:center;
    gap:24px;
    margin-top:8px;
    flex-wrap:wrap;
}

/* ===== CHECKBOX ===== */

.checkbox-login{
    background:#5c8df6;
    padding:10px 14px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    font-weight:bold;
    box-shadow:0 3px 6px rgba(0,0,0,0.2);
}

/* ===== BOTÃO CRIAR ===== */

.btn-criar{
    background:#2563eb;
    border:none;
    padding:12px 28px;
    border-radius:12px;
    color:black;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 3px 6px rgba(0,0,0,0.2);
    transition:0.3s;
}

.btn-criar:hover{
    background:#1d4fd1;
    color:white;
}

/* ===== LINK LOGIN ===== */

.link-login{
    color:#233655;
    font-size:15px;
    font-weight:bold;
}

/* ===== ALERTAS ===== */

.erro{
    background:#ffb6b6;
    color:#8a0000;
    padding:12px;
    border-radius:10px;
    margin-bottom:18px;
    font-weight:bold;
}

/* ===== RESPONSIVO ===== */

@media(max-width:950px){

    .container-cadastro{
        flex-direction:column;
        align-items:center;
    }

    .cadastro-esquerda,
    .cadastro-direita{
        width:100%;
    }

    .cadastro-direita{
        align-items:center;
    }

    .imagem-cadastro{
        max-width:100%;
        height:auto;
    }

    .bottom-cadastro{
        justify-content:center;
    }
}