  
/* css para a divisão da tela do login */
body {
margin: 0;
height: 100vh;
display: flex;
}
.verde {
  background-color: #004225; 
  position: relative;
  overflow-y: auto; /* Permite rolagem vertical */
  display: flex;
  justify-content: space-between;
  flex: 3;
  flex-direction: column;
  padding: 2em;
  justify-content: flex-start;
  align-items: flex-start;
}
.imagem-verde-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); 
pointer-events: none; 
}

.verde img.logo {
  max-width: 100%;
  max-height: 100%;
  width: 70%;
}

.verde img.imagem-verde {
  max-width: 100%;
  max-height: 100%;
  margin-top: auto;
  width: 100%;
}
.branca {
  flex: 7;
  background-color: white;
  padding: 2em;
  overflow-y: auto; /* Permite rolagem vertical */
  display: flex;
  flex-direction: column;
}
.font-sans {
  font-family: 'Nunito', sans-serif;
}

.text-gray-900 {
  color: #1a202c;
}

.text-gray-500 {
  color: #718096;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.mt-8 {
  margin-top: 2rem;
}
.custom-hr {
  border-color: #004225;
}

@media (max-width: 768px) {
.verde {
  display: none; 
}

.verde img.logo,
.verde img.imagem-verde {
  max-width: 100%; 
  height: auto;
}
.verde img.logo {
  width: 100px; 
}
}
@media (min-width: 769px) {
.verde {
  flex: 3; 
}
.verde img.logo {
  width: 70%;
}
}
.password-icon {
margin-right: 10px; 
}   
/* modal footer help */
.modal-footer {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}
.modal_footer-content {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
max-width: 600px;
width: 100%;
position: relative;
}

.close-btn {
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
font-size: 40px;
line-height: 1;

}

.accordion_footer {
margin-top: 20px;
}

.accordion_footer-item {
border-bottom: 1px solid #dddddd;
margin-bottom: 10px;
}

.accordion_footer-header {
cursor: pointer;
padding: 10px;
background-color: #f1f1f1;
border: 1px solid #ddd;
text-align: left;
}

.accordion_footer-body {
display: none;
padding: 10px;
}
.help-title-container {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
margin-right: 80px;
}
#myModal_footer {
    z-index: 9999;
}
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    width: 100%; 
    border: 2px solid #4285F4; 
    border-radius: 8px; 
    transition: background-color 0.3s, border-color 0.3s; 
    text-decoration: none; 
    color: #4285F4; 
    font-weight: bold; 
    background-color: white; 
}

.google-btn:hover {
    background-color: #f1f3f4;
    border-color: #357ae8; 
}

.google-btn svg {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
}

.separator {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.separator hr {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 10px;
}

.separator span {
    color: #666;
    font-weight: bold;
}
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); /* fundo levemente opaco */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #3b82f6; /* azul-500 */
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#password-requirements {
  font-size: 0.7rem; 
  margin-top: 0.5rem;
}
#password-requirements p {
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
#password-requirements span {
  width: 1.2em; 
  display: inline-block;
  text-align: center;
}
