.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  .title {
    color: #000000;
    font-weight: 900;
    font-size: 2em;
    margin-top: 20px;
  }
  
  .sub_title {
    font-weight: 600;
    margin: 5px 0;
  }
  
  .form_group {
    width: 350px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin: 10px;
  }
  
  .form_style {
    border: 1px solid rgb(182, 182, 182);  
    height: 37px;
    width: 100%;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.5s;
    box-sizing: border-box;
    outline: none;
  }

  .form_style:focus{
    border: 1px solid #bd3f3f;
}
  
  .btn {
    background-color: white;
    border: 1px solid rgb(182, 182, 182); 
    height: 37px;
    width: 100%;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.5s;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #f07706;
    border: 1px solid #f07706;
    color: white;
  }
