:root {
    --navyblue: #1d0553;
    --purple1: #37075d;
    --purple2: #440d82;
    --keycolor1: #c211a0;
    --keycolor2: #9d0580;
  }
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    color: #57584e;
    font-family: "Poppins", sans-serif;
  }
  
  main {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    overflow: auto;
    background: linear-gradient(
      109.25deg,
      var(--navyblue) 7.93%,
      var(--purple1) 60.97%,
      var(--purple2) 91.81%
    );
  }
  
  .RegLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3% 0;
  }
  
  .RegLogo img {
    width: 90%;
  }
  
  .form-container {
    background-color: white;
    width: 550px;
    margin: 0 auto;
    position: relative;
    max-width: 95%;
    border-radius: 3px;
    padding: 35px 35px 60px 35px;
  }
  
  .form-container h1 {
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    margin: 30px 0;
  }
  .country {
    margin-bottom: 15px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
  }
  
  .flexCountry {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  .other {
    text-decoration: none;
    color: var(--keycolor2);
    line-height: 1.5;
    font-size: 14px;
    font-weight: 700;
  }
  
  #selectCountry {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    line-height: 1.5;
    border: 1px solid #dee5e7;
    border-radius: 2px;
  }
  
  .Business-Name,
  .First-Name,
  .last-Name,
  .Email-Address,
  .Phone-Number,
  .Password {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    line-height: 2.5;
  }
  #businessName,
  #firstName,
  #lastName,
  #email,
  #password {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #dee5e7;
    border-radius: 2px;
    box-shadow: none;
  }
  
  #businessName:foucs,
  #firstName:foucs,
  #lastName:foucs,
  #email:foucs,
  #password:foucs,
  #selectCountry:focus,
  #country-code:focus,
  #Number:focus {
    outline: 1px solid var(--navyblue);
  }
  
  .flexPhone {
    display: flex;
    justify-content: space-between;
  }
  
  #country-code {
    width: 25%;
    height: 45px;
    padding: 0 10px;
    line-height: 1.5;
    color: #57584e;
    font-size: 14px;
    border: 1px solid #dee5e7;
    border-radius: 2px;
  }
  
  #Number {
    width: 70%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #dee5e7;
    border-radius: 2px;
  }
  
  .businessType,
  .softDeveloper {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .Business-Type {
    margin: 15px 0;
  }
  .Stater-Business,
  .Registered-Business {
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .Stater-Business p,
  .Registered-Business p {
    margin-left: 20px;
  }
  
  #Not-A-Developer {
    margin-left: 20px;
  }
  .Developer {
    margin-bottom: 20px;
  }
  
  .consent {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
  }
  #ConsentBox {
    margin-right: 10px;
  }
  .flexConsent {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
  }
  .policy {
    text-decoration: none;
    color: var(--keycolor1);
  }
  
  .accept {
    width: 100%;
    background-color: var(--keycolor2);
    border-color: var(--keycolor2);
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    cursor: pointer;
  }
  
  .accept:hover {
    background-color: var(--keycolor1);
  }
  
  .info {
    text-align: center;
    padding: 15px;
  }
  .terms {
    text-decoration: none;
    color: var(--keycolor1);
  }
  
  .alreadyUser {
    width: 450px;
    margin: 20px auto;
  }
  .alreadyUser P {
    color: #fff;
    text-align: center;
  }
  
  .login {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  .login:hover {
    text-decoration: underline;
  }
  
  footer button {
    width: 120px;
    height: 40px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--keycolor1);
    border: none;
    color: rgba(255, 255, 255, 0.747);
    font-size: 15px;
    font-weight: 700;
  }
  
  footer button:hover {
    color: #fff;
    background-color: var(--keycolor2);
  }
  
  footer a {
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  
  /* Form Validation */
  .checker {
    list-style: none;
    margin-bottom: 5px;
  }
  
  input[type="radio"],
  input[type="checkbox"] {
    accent-color: var(--keycolor2);
  }
  
  #message {
    display: none;
    color: #4e4e49;
    position: relative;
    margin: 10px 0;
    font-size: 12px;
    padding: 0 15px;
  }
  
  #message h3 {
    margin-bottom: 5px;
  }
  
  .PasswordValidator {
    padding: 0 15px;
  }
  
  /* Placing toggle icon in the password field */
  #togglePassword {
    margin-left: -30px;
    cursor: pointer;
  }
  
  /* If a required input has been touched and is valid*/
  .touched:required:valid {
    outline: 1px solid green;
  }
  
  /* If a required input has been touched and is invalid*/
  .touched:required:invalid {
    outline: 1px solid red;
  }
  
  /* Mobile View */
  @media screen and (max-width: 428px) {
    .form-container {
      width: 90%;
    }
  
    .alreadyUser {
      width: 90%;
      margin: 20px auto 80px;
    }
    .alreadyUser P {
      color: #fff;
      text-align: center;
    }
  }