



/* login and security */

.login-page-section{
     display: flex;
     justify-content: center;
     min-height: 100vh;
     align-items: center;
     background-color: white;
}

.sign-in-box-row {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }
  
  .sign-in-box {
    border-radius: 20px;
    border: 2px solid black;
    padding: 1rem 2rem 2rem;
    transform: scale(0.9);
  }
  
  .sign-up-box {
    border-radius: 20px;
    border: 2px solid black;
    padding: 1rem 2rem 1rem;
  }
  
  .sign-in-box form {
    margin-top: 2rem;
  }
  
  .sign-up-box form {
    margin-top: 2rem;
  }
  
  .sign-in label {
    font-weight: 700;
  }
  
  .sign-in input {
    border: 2px solid #20BEC3;
  }
  
  .form-text a {
    color: #20BEC3;
    font-weight: 700;
  }
  
  .sign-in .Sign-in-btn {
    width: 100%;
    background-color: #20BEC3;
    color: white;
    border-radius: 10px;
    color: black;
    font-weight: 700;
  
  }
  
  .sign-in .Sign-up-btn {
    width: 100%;
    background-color: #20BEC3;
    color: white;
    border-radius: 10px;
    color: black;
    font-weight: 700;
  
  }
  
  .sign-in .otp {
    margin-top: 1rem;
    width: 100%;
    background-color: white;
    border: 2px solid #20BEC3;
    border-radius: 10px;
    color: #20BEC3;
    font-weight: 700;
  
  }
  
  /* otp box css add */
  .otp-modal .form {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    width: 300px;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
  }
  
  .otp-modal .title {
    font-size: 20px;
    font-weight: bold;
    color: black;
    text-align: center;
  }
  
  .otp-modal .message {
    color: #a3a3a3;
    font-size: 14px;
    margin-top: 4px;
    text-align: center
  }
  
  .otp-modal .inputs {
    margin-top: 10px;
    text-align: center;
  }
  
  .otp-modal .inputs input {
    width: 32px;
    height: 32px;
    text-align: center;
    border: none;
    border-bottom: 1.5px solid #d2d2d2;
    margin: 0 10px;
  }
  
  .otp-modal .inputs input:focus {
    border-bottom: 1.5px solid royalblue;
    outline: none;
  }
  
  .otp-modal .action {
    text-transform: capitalize;
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    background-color: #20BEC3;
    color: white;
    cursor: pointer;
  
    font-weight: 700;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  
  /* css end */
  
  .sign-in p {
    text-align: center;
    color: black;
    font-weight: 600;
    margin-top: 1rem;
  }
  
  .sign-in p a {
    color: #20BEC3 !important;
    font-weight: 700;
  }
  
  .sign-in-bottom {
    text-align: center;
    color: black;
    font-weight: 600;
    margin-top: 1rem;
  }
  
  .sign-in-bottom a {
    color: #20BEC3 !important;
    font-weight: 700;
  }
  
  
  
  @media only screen and (max-width:992px) {
    body {
      background-color: transparent;
    }
  }
  
  @media only screen and (max-width:768px) {
    .sign-in-box-row {
      padding: 1rem 0.5rem 2rem;
    }
  }