@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    position: fixed;
    z-index: 99;
    width: 100%;
    background: rgb(37, 41, 68);
}

/*------LOGIN e REGISTRO--------*/

.formLogin {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 7px;
  padding: 40px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.4);
  gap: 5px
}

.areaLogin img {
  width: 420px;
}

.formLogin h1 {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 2.3em;
}

.formLogin p {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.formLogin input {
  padding: 15px;
  font-size: 14px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  margin-top: 5px;
  border-radius: 4px;
  transition: all linear 160ms;
  outline: none;
}


.formLogin input:focus {
  border: 1px solid rgb(37, 41, 68);
}

.formLogin label {
  font-size: 14px;
  font-weight: 600;
}

.formLogin a {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  color: #555;
  transition: all linear 160ms;
}

.formLogin a:hover {
  color: rgb(37, 41, 68);
}

/* Estilos para btn-success e btn-danger */
.btn-success {
  background-color: #28a745 !important; /* Verde */
  color: #fff !important;
  border: none;
}

.btn-danger {
  background-color: #dc3545 !important; /* Vermelho */
  color: #fff !important;
  border: none;
}

/* Hover para sucesso e perigo */
.btn-success:hover {
  background-color: #218838 !important; /* Verde escuro */
}

.btn-danger:hover {
  background-color: #c82333 !important; /* Vermelho escuro */
}


.btn {
  background-color: rgb(37, 41, 68);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none !important;
  transition: all linear 160ms;
  cursor: pointer;
  margin: 0 !important;

}

.btn:hover {
  transform: scale(1.05);
  background-color: rgb(37, 41, 68);
  color: #fff;
}

/*--------------*/

