html,
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

fieldset{
    border: none;
    padding: 16px 0px;
}

.radio:hover{
    background-color: #d7e9ff;
}

#contatos{
    margin-bottom: 16px;
}

.radio:first-child{
    border-top: 1px #CCC solid;
}

.radio{
    padding: 16px 0px;
    border-bottom: 1px #CCC solid;
    cursor: pointer;
}

.cadastro{
    margin: 32px auto;
}

.input-wrapper {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.esqueci-senha {
    font-size: 12px;
    font-weight: bold;
    color: rgb(97 150 216);
}

.esqueci-senha:hover{
    color: rgb(51 78 113);
}

.logo {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.conteudo {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 400px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    height: fit-content;
    margin-top: 8%;
}

.msg-error{
    color: red;
    font-size: 13px;
}

.clicavel{          
    cursor: pointer;
}

.nav:hover{
    color: rgb(51 78 113);
}

a {
    all: unset !important;
}


img {
    width: 100%;
}

.text-right{
    text-align: right;
}

.text-center{
    text-align: center;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}


select{
    width: 100%;
    background-color: white;
    height: 7ex;
    margin-left: 9px;
    border: none;
}

.row{
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.col{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-wrapper, .option{
    border: 1px solid rgb(97 150 216);
}

.input-wrapper:focus-within {
    border: 1px rgb(51 78 113) solid ;
}

input:focus, select:focus{
    outline: none;
}

.pass-wrapper{
    padding-right: 9px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

input:not([type="radio"]) {
    border: none;
    width: 95%;
    line-height: 7ex;
    margin-left: 9px;
}

.msg{
    color: red;
    margin: 16px auto;
    font-size: 16px;
}

.sucess{
    color: rgb(97 150 216);
}


.cor-primaria{
    color: rgb(97 150 216);
}

label {
    color: rgb(97 150 216);
    font-weight: bold;
    position: absolute;
    top: -6px;
    z-index: 1;
    left: 8px;
    background-color: white;
    padding: 0 5px;
}

button {
    background-color: #6196d8;
    color: white;
    width: 100%;
    font-weight: bold;
    line-height: 6ex;
    cursor: pointer;
    border: none;
}


.link-button{
    background-color: transparent;
    color: #6196d8;
    cursor: pointer;
}

.link-button:hover{
    color: rgb(51 78 113);
    background-color: white;
}

button:hover {
    background-color: rgb(51 78 113);
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-weight: bold;
    color: #4e7fbf;
    padding: 24px 0px;
    border-top: 1px rgb(97 150 216) solid;
    border-bottom: 1px rgb(97 150 216) solid;
    margin-bottom: 24px;
}

.ativo {
    color: #295580;
    background-color: transparent;
}

button.ativo {
    color: white;
    background-color: #295580;
}

.disabled{
    background-color: rgb(97 150 216);
    cursor: default;
}

.disabled:hover{
    background-color: rgb(97 150 216);
}

.tooltip {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: -200%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

  .input-codigo > * {
    border-bottom: 2px #6196d8 solid !important;;
    text-align: center;
    padding: 0px;
    font-size: 32px;
    line-height: 4ex !important;
    color: #6196d8;
    margin: 16px 0px;
    font-weight: bold;
}

input:disabled{
    border-bottom: 2px #CCC solid !important;
    color: #CCC
}

button:disabled{
    cursor: auto;
    background-color: #CCC;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
}

.eye{
    cursor: pointer;
}