#registerSection {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    box-sizing: border-box;
    padding:30px 20px;
    background-color: rgb(245, 245, 245);

    /* border: 1px solid red; */
}

#registerSection .formContainer {
    box-sizing: border-box;
    padding:20px;
    width: 440px;

    /* border: 1px solid red; */
}

#registerSection .row {
    margin-bottom: 25px;

    /* border: 1px solid red; */
}

#registerSection #register_country {
    width:100%;
    height: 38px;
    border-radius: 5px;
}

#registerSection #submitButton {
    margin-top: 20px;
    width: 150px;
    border-radius: 100px;
}

#registerSection #passwordRule{
    margin-top: 5px;
    display: none;
    /* border: 1px solid red; */
}

.invalid {
    color: #d9534f;
}

.valid {
    color: #5cb85c;
}

#passwordMatch{
    margin-top: 5px;
    display: none;
    color: #5cb85c;
}

#passwordNotMatch{
    margin-top: 5px;
    display: none;
    color: #d9534f;
}

#registerSection #registerErrMsg{
    display: none;
    justify-content: center;
    align-items: center;

    background-color:#ffecec;
    color:#9f005b;
    height:30px;
    font-size:12px;

    margin-top:10px;

    border-radius:8px;
}

#registerSection #referCodeErrMsg{
    display: none;
    justify-content: center;
    align-items: center;

    background-color:#ffecec;
    color:#9f005b;
    height:30px;
    font-size:12px;

    margin-top:10px;

    border-radius:8px;
}

/* ============================ */

#registerSuccessSection{
    background-color: rgb(245, 245, 245);
    padding-bottom: 100px;
    /* border: 1px solid red; */
}


#registerSuccessSection .successTitle{
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
    color:#37517e;
    text-align: center;
    /* border: 1px solid red; */
}

#registerSuccessSection .successSubTitle{
    font-size: 24px;
    margin-bottom: 80px;
    color:#37517e;
    text-align: center;
}

#registerSuccessSection .submit{
    width:250px;
    height:45px;
    font-size:18px;
}

#registerSuccessSection .successBtnGroup{
    margin-top:50px;
    text-align:center;
    /* border:1px solid red; */
}
  
  
  
#registerSuccessSection .check-container {
       width: 6.25rem;
       height: 7.5rem;
       display: flex;
       flex-flow: column;
       align-items: center;
       justify-content: space-between;
  
     margin: 0 auto;
     margin-top:50px;
  
  }
  #registerSuccessSection .check-container .check-background {
       width: 100%;
       height: calc(100% - 1.25rem);
       background: linear-gradient(to bottom right, #5de593, #41d67c);
       box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
       transform: scale(0.84);
       border-radius: 50%;
       animation: animateContainer 0.75s ease-out forwards 0.75s;
       display: flex;
       align-items: center;
       justify-content: center;
       opacity: 0;
  }
  #registerSuccessSection .check-container .check-background svg {
       width: 65%;
       transform: translateY(0.25rem);
       stroke-dasharray: 80;
       stroke-dashoffset: 80;
       animation: animateCheck 0.35s forwards 1.25s ease-out;
  }
  #registerSuccessSection .check-container .check-shadow {
       bottom: calc(-15% - 5px);
       left: 0;
       border-radius: 50%;
       background: radial-gradient(closest-side, rgba(73, 218, 131, 1), transparent);
       animation: animateShadow 0.75s ease-out forwards 0.75s;
  }
   @keyframes animateContainer {
       0% {
           opacity: 0;
           transform: scale(0);
           box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
      }
       25% {
           opacity: 1;
           transform: scale(0.9);
           box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
      }
       43.75% {
           transform: scale(1.15);
           box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
      }
       62.5% {
           transform: scale(1);
           box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
      }
       81.25% {
           box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
      }
       100% {
           opacity: 1;
           box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
      }
  }
   @keyframes animateCheck {
       from {
           stroke-dashoffset: 80;
      }
       to {
           stroke-dashoffset: 0;
      }
  }
   @keyframes animateShadow {
       0% {
           opacity: 0;
           width: 100%;
           height: 15%;
      }
       25% {
           opacity: 0.25;
      }
       43.75% {
           width: 40%;
           height: 7%;
           opacity: 0.35;
      }
       100% {
           width: 85%;
           height: 15%;
           opacity: 0.25;
      }
  }
  


@media screen and (max-width: 576px) {
    #registerSection {
        display: flex;
        justify-content: center;
        align-items: center;
    
        width: 100%;
        height: 650px;
        /* padding-top: 100px;
        padding-bottom: 120px; */
        background-color: rgb(245, 245, 245);
    }
}