/* *{
    border: 1px solid red;
} */

.container-formular {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 100%;
    
  }
.formular{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  label{
    align-items: flex-end;
    text-align: end;
    color: #09829b;
    font-weight: bold;
    
  }
}
.titlu-formular{
    font-size: 2.5rem;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #09829b;
  background-color: white;
  width: 80.69%;
  border-radius: 25px;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.rand-formular{
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* width: 28rem; */
    gap:1rem;
}
label,input,select{
    width: 18rem;
    color: #00818F;

}


input, select{
  padding: 5px;
  border-radius: 15px;
  text-align:center;
  border: none;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
  0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.buton-formular{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    font-weight: bold;
    color: white;
    align-items: center;
  background: linear-gradient(
    132deg,
    rgba(0, 177, 178, 1) 22%,
    rgba(0, 140, 186, 1) 75%
  );
  width: 10rem;
  cursor: pointer;
  border: none;
  font-size: 1.3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  margin-bottom: 2rem;
  
}
.buton-formular:hover {
    box-shadow: 0px 20px 80px rgba(10, 193, 230, 0.5);
    transform: scale(1.1);
  }



@media only screen and (max-width: 768px) {
    .titlu-formular{
        width: 82%;
        font-size: 1.5rem;
    }
    .rand-formular{
        /* width: 22rem; */
        flex-direction: column;
    }
    
    .formular{
    label{
      align-items: center;
      text-align: center;
    }
    align-items: center;

  }
}
