
  
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }


  body, html {
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background: rgb(204, 168, 84); */
      background: linear-gradient(30deg, rgba(204, 168, 84, 1) 1%, rgba(219, 173, 59, 1) 33%, rgba(247, 234, 161, 0.9136029411764706) 85%);
      font-family: Arial, sans-serif;
  }


  .form-account {
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
  }

  .number-email-input {
    width: 100%;
    /* padding: 10px; */
    margin-bottom: 35px;
    /* margin-top: 15px; */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px 15px;
    text-align: right;
  }
  .otp-input {
    width: 100%;
    /* padding: 10px; */
    margin-bottom: 35px;
    /* margin-top: 15px; */
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px 15px;
    text-align: right;
}
  .dk-btn-info {
      width: 100%;
      padding: 10px;
      background: rgb(233, 192, 95);
      /* background: linear-gradient(30deg, rgba(204, 168, 84, 1) 1%, rgba(219, 173, 59, 1) 33%, rgba(247, 234, 161, 0.9136029411764706) 85%); */
      color: black;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      margin-top: 10px;
  }

  .dk-btn-info:hover {
      background: rgb(204, 168, 84);
    
  }

  .alert-danger {
      color: red;
      font-size: 12px;
  }
  .text-welcome{
    /* text-align: right; */
    margin-bottom: 35px;
    text-align: center;
  }
  .text-information{
    /* text-align: right; */
    margin-bottom: 40px;
    text-align: center;
  }
  .img-head{
    max-width: 360px;
height:auto ;
margin: auto;
margin-bottom: 50px;



  }
  

  @media (max-width: 768px) {
      .form-account {
          width: 90%;
      }
      .img-head{
        /* margin-right: 20px; */
        max-width: 320px;
    }
  }