input {
  padding: 0;
}

.checkbox{
  width: 15px !important;
  height: 15px !important;
  margin-top: 10px !important;
}

.form-container{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border-radius: 4%;  
    width: 100%;
    justify-content: space-between;
  
    >form:first-child {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%;
      gap: 10px;
      
  
      >div{
        width: 100%;
        >input{
          width: 100%;
          height: 40px;
          padding-block: 10px;
          padding-inline: 20px;
          border-radius: 5px;
          border: 1px solid #c7c7c7;
          outline-color: none;
          background-color: white;
        }
    
        >input:focus-visible{
          border: 1px solid #c7c7c7;
          outline: none;
        }
    

      }
      >button{
        width: 100%;
        padding-block: 10px;
        padding-inline: 20px;
        border: none;
        border-radius: 5px;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        box-shadow: 0px 10px 20px #77777775;
      }
    }

    >div:last-child{
      padding: 26px 26px 26px 26px;
      background-color: #ECECEC;
      border-radius: 0px 0px 15px 15px;
      display: flex;
      justify-content: center;
      >img{
        margin: 0 auto;
      }
    }
  }

  
  .phone_number{
    width: 100% !important;
    border-radius: 5px !important;
    border: none !important;
    outline: none !important;
  }
  
  .iti{
    width: 100% !important;
    height: 40px !important;
    border-radius: 5px !important;
    border: 1px solid #c7c7c7 !important;
    background-color: white !important;
    outline: none !important;
  }

  .input-container {
    position: relative;
    width: 100%;
  }

  .error-msg {
    display: none;
    color: #ff4444;
    font-size: 12px;
    margin-top: 4px;
    padding-left: 4px;
  }

  .input-error {
    border-color: #ff4444 !important;
  }

  .input-error:focus {
    border-color: #ff4444 !important;
  }

  .submitButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Toast notifications */
  .toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    max-width: 400px;
    margin-left: auto;
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .toast-notification.toast-show {
    opacity: 1;
    transform: translateY(0);
  }

  .toast-error {
    background-color: #dc3545;
  }

  .toast-success {
    background-color: #28a745;
  }

  .toast-warning {
    background-color: #ffc107;
    color: #333;
  }