

/* .text a {
  
} */
.signup-form {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
  }
  
  .signup-form h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 20px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #7EB6FF;
    border-radius: 5px;
    font-size: 16px;
    background-image: none !important;
  }
  
  .form-group input[type="text"]::placeholder,
  .form-group input[type="email"]::placeholder,
  .form-group input[type="password"]::placeholder {
    color: #999;
    padding-left: 30px;
  }
  
  .form-group .icon {
    position: absolute;
    top: 72%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color:#0D4FA5;
  }
  
  .form-group .hide {
    display: none;
  }
  
  .password-toggle {
    position: relative;
  }
  
  .password-toggle .toggle-icon {
    position: absolute;
    top: 72%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color:#0D4FA5;

  }
  
  .password-toggle .toggle-icon:before {
    content: "\f070";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #0D4FA5;
  }
  
  .password-toggle.show .toggle-icon:before {
    content: "\f06e";
  }
  
  .signup-form button[type="submit"] {
    display: block;
    width: 30%;
    padding: 10px;
    /* background-color: ; */
    background-image: linear-gradient(45deg, #0C4DA2 0%, #166BDB 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
  }
  
  .signup-form button[type="submit"]:hover {
    background-color: #166BDB;
  }
  
  

  .ref-toggle {
    position: relative;
  }
  
  .ref-toggle .ref-icon {
    position: absolute;
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color:#0D4FA5;

  }
  