body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

.logo {
  width: 140px;
  height: 140px;
  margin: 10px auto 30px; 
  display: block;
  border-radius: 12px; 
  object-fit: cover;
}

.login-box {
  text-align: left;
  border: 2px solid #588f27; /* borda mais visível */
  padding: 20px; /* mantém o tamanho original */
  border-radius: 12px; /* mais arredondado, igual app mobile */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* sombra suave para destacar */
  background-color: #ffffff; /* garante fundo branco */
}

.alert-fatifood {
    background-color: #ED8C2B; /* laranja FatiFood */
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

/* Animação de entrada */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

label {
  margin-top: 10px;
  color: black; /* agora o texto será preto */
}

/* Deixe os ícones verdes */
label i {
  color: #588f27 !important;
}

input::placeholder {
  font-size: 14px;
}

input[type="email"],
input[type="password"] {
  border: 2px solid #588f27 !important; /* borda mais consistente com o app */
  border-radius: 12px; /* arredondamento igual ao login-box */
  padding: 10px 15px; /* melhor espaçamento interno */
}

.eye-icon {
  font-size: 1.3rem;
  cursor: pointer;
  color: #588f27;
  border-left: 1px solid #588f27; /* separa do input */
  border-radius: 0 12px 12px 0; /* cantos arredondados iguais ao input */
  background-color: #f9f9f9; /* mesmo fundo do input */
  padding: 0 10px;
}

.icon-verde {
  color: #588f27 !important;
}
.recuperar-senha {
  text-align: center;
  font-size: 13px; /* menor do que o padrão */
  margin-top: 20px;
}

.texto-esqueci {
  font-weight: bold;
}

.clique-verde {
  color: #588f27 !important;
  text-decoration: none;
  font-weight: bold;
}



button {
  padding: 10px;
  margin-top: 15px;
  background-color: #ed8c2b;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}
.btn-login {
  background-color: #ed8c2b;
  color: white;
  font-weight: bold;
  font-size: 17px;
  padding: 10px 90px;
  border: none;
  cursor: pointer;
  display: block;
  margin: 30px auto 0; /* Aumentado de 15px para 30px */
  border-radius: 12px; /* mais arredondado, igual app mobile */
  transition: background-color 0.3s;
}
.btn-login:hover {
  background-color: #d77b25;
}


.recuperar-senha {
  
  margin-top: 25px;
  text-align: center;
}

.recuperar-senha a {
  color: #588f27;
  font-weight: bold;
  text-decoration: none;

}

/* Padroniza a altura de todos os inputs */
input[type="email"],
input[type="password"] {
  border: 2px solid #588f27 !important;
  border-radius: 12px;
  padding: 10px 15px;
  height: 48px; /* define altura fixa */
  box-sizing: border-box;
}

/* Ajuste do input dentro do input-group para não encolher */
.input-group .form-control {
  height: 48px; /* mesma altura do input email */
  border-radius: 12px 0 0 12px; /* mantém arredondamento esquerdo */
}

/* Eye icon */
.input-group .eye-icon {
  height: 48px; /* mesma altura do input */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 12px 12px 0; /* mantém arredondado direito */
}

