.registroEscolha{
   display:grid;
   min-height:calc(100vh - 90px);
   box-sizing:border-box;
   place-items:center;
   padding:32px 18px;
}

.registroEscolhaCard{
   width:min(100%, 520px);
   box-sizing:border-box;
   gap:18px;
   margin:0;
   padding:clamp(30px, 6vw, 52px);
   border:1px solid #dbe7ef;
   border-radius:24px;
   background:rgba(255,255,255,.96);
   box-shadow:0 18px 50px rgba(31,76,108,.15);
}

.registroEscolhaCard h1{
   margin:0 auto 10px;
   color:#173f68;
   font-size:clamp(1.8rem, 5vw, 2.45rem);
   line-height:1.18;
   text-align:center;
}

.registroEscolhaAcao{
   width:100%;
   margin:0;
}

.registroEscolhaAcao input{
   width:100%;
   min-height:64px;
   border:0;
   border-radius:14px;
   box-shadow:0 7px 18px rgba(28,67,96,.12);
   font-size:1.1rem;
   font-weight:800;
   cursor:pointer;
   transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.registroEscolhaAcao input:hover,
.registroEscolhaAcao input:focus-visible{
   filter:brightness(1.05);
   outline:3px solid rgba(37,117,190,.2);
   outline-offset:3px;
   transform:translateY(-2px);
   box-shadow:0 12px 24px rgba(28,67,96,.2);
}

.registroEscolhaSeparador{
   display:flex;
   align-items:center;
   gap:14px;
   width:100%;
   margin:4px 0;
   color:#698095;
   font-weight:700;
   text-align:center;
}

.registroEscolhaSeparador::before,
.registroEscolhaSeparador::after{
   height:1px;
   flex:1;
   background:#dbe7ef;
   content:"";
}

@media(max-width:600px){
   .registroEscolha{padding:18px 12px}
   .registroEscolhaCard{padding:30px 18px;border-radius:20px}
   .registroEscolhaAcao input{min-height:60px;font-size:1.02rem}
}
