body{
    box-sizing: border-box;
    overflow-x: hidden;
    font-family:'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: whitesmoke;
    }
    .container{
      overflow-x: hidden;
      position: relative;
    }
    .header a:hover{
      cursor: pointer;
  }

        /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  border-radius: 10px;
  background-color: #fefefe;
  margin: 5px auto; /* 15% from the top and centered */
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
.new-container{
    display: flex;
    flex-direction: column;
    margin: 20px;
}
.new-container a{
  text-align: center;
  text-decoration: none;
  background-color: rgba(243, 115, 53, 1);
  padding: 20px;
  border-bottom: 2px solid black;
  margin: 20px 0;
  color: white;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
}
.new-container a:hover{
   opacity: 0.5;
}

    .header{
      overflow: hidden;
      padding: 20px 30px;
    }
    /* styling the header link */
    .header a {
      float: left;
      color: gray;
      text-align: center;
      padding: 12px;
      text-decoration: none;
      font-size: 1.2em;
      line-height: 25px;
      border-radius: 4px;
      text-transform: capitalize;
      font-family:'Poppins', sans-serif;
    }
    /* styling the logo */
    
    .header a.logo{
      font-size: 1.7em;
      font-weight: bold;
      padding: 0;
    }
    /* hover */
    /* .header a:is(:link, :active, :visited).active {
      color:rgba(243, 115, 53, 1);
    } */
    .header a.logo:hover{
      background-color:transparent;
    }
    .header a.active{
      /* background-color: dodgerblue; */
      color: rgba(243, 115, 53, 1);
    }
    .header-right{
      float: none;
      margin-left: 300px;
    }
    .header-right a.reg{
      margin-left: 10px;
      background-color: rgba(243, 115, 53, 1);
      border-radius: 8px;
      border-bottom: 1px solid black;  
      padding: 10px 15px;
      color: rgba(255, 255, 255, 1);
      font-family:'Poppins', sans-serif;
      cursor: pointer;
    }
    .header .icon {
        display: none;
      }

      #regForm {
        margin: 0 300px;
        padding: 20px;
        background-color: white;
        border-radius: 4px;
        font-size: 12px;
    }
    
    #regForm h3 {
        color: #0f2027;
        text-align: center;
        font-size: 1.5rem;
    }
    
    #regForm button {
        padding: 10px;
        margin-top: 10px;
        width: 100%;
        color: white;
        background-color: rgba(243, 115, 53, 1);
        border: none;
        border-radius: 4px;
        font-size: 16px;
    }
    #regForm button:hover{
        cursor: pointer;
    }
    
    .input-control {
        display: flex;
        flex-direction: column;
    }
    .c-check{
        display: flex;
    }
    .c-check input{
      width: 20px;
    }
    .c-check label{
        width: 100%;
        padding: 10px;
        font-size:1rem;
    }    
    .input-control input {
        border: 2px solid #f0f0f0;
        border-radius: 4px;
        display: block;
        font-size: 16px;
        padding: 10px;
        width: 95%;
    }
      .textarea{
        max-width: 95%;
        min-width: 95%;
        max-height: 300px;
        min-height: 300px;
        border: 2px solid #f0f0f0;
        border-radius: 4px;
        display: block;
        font-size: 16px;
      }
    .input-control input:focus {
        outline: 0;
    }
    .input-control select{
        border: 2px solid #f0f0f0;
        border-radius: 4px;
        display: block;
        font-size: 16px;
        padding: 10px;
        width: 95%;
    }
    
    #already{
        text-align: center;
        margin-bottom: 50px;
        font-size: 14px;
    }
    #already a{
        text-decoration: none;
        color: rgba(243, 115, 53, 1);
    }
    
    #Agreement{
        text-align: center;
        font-size: 1rem;
    }
    
    .input-control textarea {
        border: 2px solid #f0f0f0;
        border-radius: 4px;
        display: block;
        font-size: 12px;
        padding: 10px;
        min-width: 95%;
        max-width: 95%;
        min-height: 20px;
        max-height: 100px;
    
    }
    
    .input-control.success input{
        border-color: #09c372;
    }
    
    .input-control.error input{
        border-color: #ff3860;
    }
    
    .input-control textarea:focus {
        outline: 0;
    }
    
    .input-control.success textarea{
        border-color: #09c372;
    }
    
  
    .input-control .error {
        color: #ff3860;
        font-size: 9px;
        height: 13px;
    }
    label{
        font-size: 1.2rem;
        margin-top: 10px;
    }
    
/* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  background: white;
  color: #000;
  position: relative;
  padding: 20px;
  margin-top: 10px;
}

#message h3{
  font-size: 18px;
}

#message p {
  padding: 10px 35px;
  font-size: 13px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}
    
    @media only screen and (max-width:1200px) {
        .header a.logo{
             
            display: block;
          }
          .header-right{
            float: none;
            margin: 0;
            font-size: 14px;
          }
          .header-right a.reg{
            /* margin-right: 300px; */
            background-color: rgba(243, 115, 53, 1);
            border-radius: 8px;  
            padding: 10px 5px;
            color: rgba(255, 255, 255, 1);
            font-family:'Poppins', sans-serif;
          }
          .header a{display: none;}
          .header a.icon {
            float: right;
            display: block;
            font-size: 30px;
          }

          .header.responsive {position: relative;}
          .header.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
          }
          .header.responsive a {
            float: none;
            display: block;
            text-align: left;
          }
        #regForm {
            margin: 100px 200px;
        }
        .c-check input{
          width: 20px;
        }
    }
    @media only screen and (max-width:1100px) {
        .header a.logo{
             
            display: block;
          }
          .header-right{
            float: none;
          margin: 0;
          font-size: 14px;
          }
          .header-right a.reg{
            /* margin-right: 300px; */
            background-color: rgba(243, 115, 53, 1);
            border-radius: 8px;  
            padding: 10px 5px;
            color: rgba(255, 255, 255, 1);
            font-family:'Poppins', sans-serif;
          }
          .header a{display: none;}
          .header a.icon {
            float: right;
            display: block;
          }

          .header.responsive {position: relative;}
          .header.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
          }
          .header.responsive a {
            float: none;
            display: block;
            text-align: left;
          }
        #regForm {
            margin: 100px 100px;
        }
        .c-check input{
          width: 20px;
        }
    }
    @media only screen and (max-width:800px) {
        .header a.logo{
             
            display: block;
          }
          .header-right{
            float: none;
            margin: 0;
            font-size: 14px;
          }
          .header-right a.reg{
            /* margin-right: 300px; */
            background-color: rgba(243, 115, 53, 1);
            border-radius: 8px;  
            padding: 10px 5px;
            color: rgba(255, 255, 255, 1);
            font-family:'Poppins', sans-serif;
          }
          .header a{display: none;}
          .header a.icon {
            float: right;
            display: block;
          }

          .header.responsive {position: relative;}
          .header.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
          }
          .header.responsive a {
            float: none;
            display: block;
            text-align: left;
          }
        #regForm {
            margin:0 20px;
        }
      .c-check input{
        width: 20px;
      }
      .c-check label{
        width: 100%;
        padding: 10px;
        font-size:.8rem;
    } 
    label{
      font-size: .8rem;
  }
  .new-container a{
    text-align: center;
    text-decoration: none;
    background-color: rgba(243, 115, 53, 1);
    padding: 20px;
    margin: 20px 0;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
 }
    }

    @media only screen and (max-width:400px){
      .header a.logo{
             
        display: block;
      }
      .header-right{
        float: none;
          margin: 0;
          font-size: 14px;
      }
      .header-right a.reg{
        /* margin-right: 300px; */
        background-color: rgba(243, 115, 53, 1);
        border-radius: 8px;  
        padding: 10px 5px;
        color: rgba(255, 255, 255, 1);
        font-family:'Poppins', sans-serif;
      }
      .header a{display: none;}
      .header a.icon {
        float: right;
        display: block;
      }

      .header.responsive {position: relative;}
      .header.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
      }
      .header.responsive a {
        float: none;
        display: block;
        text-align: left;
      }
    #regForm {
        margin:0 20px;
      }
      .c-check input{
        width: 20px;
      }
      .c-check label{
        width: 100%;
        padding: 10px;
        font-size:.8rem;
    } 
    label{
      font-size: .8rem;
  }
  .new-container a{
    text-align: center;
    text-decoration: none;
    background-color: rgba(243, 115, 53, 1);
    padding: 20px;
    margin: 20px 0;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
 }
    }