*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    -webkit-text-size-adjust:100%;
}

body{
    min-height:100vh;
    background:#f3f4f6;
    color:#1f2937;
}

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

/* TOPO */
.topo{
    min-height:60px;
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:10px 20px;
    border-bottom:1px solid #ddd;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.icone{
    width:30px;
    height:30px;
    min-width:30px;
    background:#0052cc;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:4px;
}

.logo-area h2{
    font-size:14px;
    line-height:1.2;
}

.logo-area span{
    display:block;
    font-size:11px;
    color:#555;
    line-height:1.2;
}

.topo > i{
    flex:0 0 auto;
}

/* BARRA DE LOGOS */
.instituicoes{
    min-height:35px;
    background:#e8edf2;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    padding:9px 16px;
    font-size:14px;
    overflow-x:auto;
    scrollbar-width:none;
}

.instituicoes::-webkit-scrollbar{
    display:none;
}

.instituicoes span{
    flex:0 0 auto;
}

/* CONTEÚDO */
main{
    width:100%;
    padding:30px 20px;
}

.card {
    width:100%;
    max-width:1360px;
    min-height:290px;
    margin:0 auto;
    background:white;
    border:1px solid #d7d7d7;
    border-radius:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:25px;
    text-align:center;
}

.card h1{
    font-size:22px;
    line-height:1.25;
    margin-bottom:12px;
}

.card p{
    color:#667085;
    margin-bottom:35px;
    line-height:1.45;
}

.campo{
    width:100%;
    max-width:510px;
    min-height:55px;
    border:1px solid #d0d5dd;
    border-radius:8px;
    display:flex;
    align-items:center;
    padding:0 15px;
    gap:10px;
    background:#fff;
}

.campo i{
    color:#0052cc;
    flex:0 0 auto;
}

.campo input{
    border:none;
    outline:none;
    width:100%;
    min-width:0;
    font-size:16px;
    background:transparent;
}

button{
    margin-top:32px;
    min-width:130px;
    height:48px;
    border:none;
    border-radius:8px;
    background:#0052cc;
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#003ea1;
}

.erro {
    width:100%;
    max-width:510px;
    margin-top:6px;
    margin-bottom:0 !important;
    text-align:left;
    font-size:12px;
    color:#d92300 !important;
    min-height:16px;
}

.container-botao{
    width:auto;
    min-width:130px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:30px;
    padding:0 18px;
}

.btn {
    background: #004bd6;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 7px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (max-width:768px){
    .topo{
        padding:10px 14px;
    }

    .instituicoes{
        justify-content:flex-start;
        gap:24px;
    }

    main{
        padding:20px 12px;
    }

    .card{
        min-height:calc(100vh - 135px);
        padding:28px 16px;
    }

    .card h1{
        font-size:20px;
    }

    .card p{
        margin-bottom:24px;
        font-size:14px;
    }

    .campo{
        max-width:100%;
    }

    .campo input{
        font-size:15px;
    }

    .container-botao{
        width:100%;
        max-width:510px;
    }
}

@media (max-width:420px){
    .logo-area h2{
        font-size:13px;
    }

    .logo-area span{
        font-size:10px;
    }

    .topo > i img{
        width:24px;
    }

    .instituicoes{
        gap:18px;
        padding-inline:12px;
    }

    .card{
        border-radius:8px;
    }

    .campo{
        padding:0 12px;
    }

    .campo input::placeholder{
        font-size:13px;
    }
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        white-space: normal;
    }
}