
body {
    height: 100vh;
    margin: 0;
    padding: 0;
}


.card-cadastro-custom{ 
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 74, 126, 0.2);
    height: auto;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 0.700rem;
    color: #ffff;
    background: rgba(255, 255, 255, 0.1);
    background-color: #ffffff;
}


#form-cadastro input::placeholder {
    font-size: 0.7rem; 
    color: rgba(3, 29, 64, 0.7); 
    padding: 10px; 
}

#form-cadastro .form-control {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 5px; 
    background: rgba(255, 255, 255, 0.4); 
    color: #031d40;
    backdrop-filter: blur(4px); 
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out; 
    padding: 10px 5px 10px 0px;
    font-size: 13px;
}

#custom-title {
    background-color: transparent;
    color:#031D40;
}

a[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    background-color: #031d40;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

a[data-tooltip]:hover::after {
    opacity: 1;
}

#cadastroform-source {
    background: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem; 
    color: rgba(3, 29, 64, 0.7); 
    padding: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    transition: background 0.3s, color 0.3s; 
}


#cadastroform-source:focus {
    background: white; 
    color: #031d40; 
    outline: none; 
}

#cadastroform-primeironome {
    color: #ffffffcc;
}


#cadastroform-source:hover {
    background: white; 
    color: rgba(3, 29, 64, 1); 
}
.form-label {
    margin-bottom: 1.8px; 
    color:#031D40;
}

.form-check-label{
    font-size: 0.8rem;
    color: #031D40;
}

.custom-conta {
    color:#031D40;
}

.custom-continue-button{
    background-color: rgba(0, 74, 126, 0.8);
    color: #ffffff;
    font-size: 1.2rem;
    border-radius: 5px;
    border: 2px solid rgba(0, 74, 126, 0.8);
    padding: 10px;
    width: 100%;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.custom-login {
    background-color: rgba(87, 186, 179, 0.8);
    color: white; 
    border: 2px solid #57bab3; 
    transition: background-color 0.3s ease, color 0.3s ease; 
    margin-left: 5px;
}

.custom-login:hover {
    background-color: #57bab3; 
    color: white; 
    border: 2px solid #57bab3;
}

 #second-card{
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    color:#031D40;
}

.logo-simbolo {
    max-width: 150px; 
    height: auto;
    text-align: center;
    margin-top: 6px;
    margin-left: 55px;
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .logo-simbolo {
        float: right;
        height: auto;
        margin-top: 6px;
        margin-left: 0;
        margin-right: 150px;
    }
}

@media (min-width: 995px) and (max-width: 1200px) {
    .logo-simbolo {
        float: right;
        height: auto;
        margin-top: 6px;
        margin-left: 0;
        margin-right: 110px;
    }
}

@media (min-width: 300px) and (max-width: 995px) {
    .card-cadastro-custom {
            margin-bottom: 20px;
        }
    
        .logo-simbolo {
            height: auto;
            text-align: center;
            margin-top: 6px;
            margin-left: 0;
        }
}

@media (max-width: 767px) {
    .card-cadastro-custom {
        margin-bottom: 15px; 
        padding: 20px; 
    }
}


#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .spinner-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 6px solid transparent;
    border-radius: 50%;
  }
  
  .spinner-ring:nth-child(1) {
    border-top: 6px solid #3ECCC7;
    animation: spin1 1.5s linear infinite;
  }
  
  .spinner-ring:nth-child(2) {
    border-bottom: 6px solid #005D9D;
    animation: spin2 1.5s linear infinite;
  }
  
  @keyframes spin1 {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin2 {
    0% {
      transform: rotate(360deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }