.signup-area,
.signin-area{
  background-image: url('../images/signup-banner.png');
  min-height: 500px;
  background-position: left;
  background-repeat: no-repeat;
  /* background-size: auto; */
}

.signup-area .signup-form input,
.signin-area .signin-form input{
  height: 40px;
}
.signup-area .signup-form .resume-group .resume-file,
.signup-area .signup-form .certificate-group .certificate-file{
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	opacity: 0;
}

.signup-area .signup-form .resume-group .resume-file-icon,
.signup-area .signup-form .certificate-group .certificate-file-icon{
	right: 10px;
  top: 7px;
	text-align: center;
	z-index: 0;
}

.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #E2E2E2;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-checkbox:hover input ~ .checkmark {
    background-color: #E2E2E2;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom-checkbox input:checked ~ .checkmark {
    background-color: #E2E2E2;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .custom-checkbox .checkmark:after {
    left: 0.8px;
    top: 3.5px;
    width: 20px;
    height: 20px;
    border: solid #E2E2E2;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(90deg);
    background: red;
  }

  /* modal css */
  .terms-btn{
    width: 343px;
    font-size: 14px;
    font-weight: 400;
    height: 39px;
    border-radius: 24px;
  }
  .register-btn{
    width: 90%;
    font-size: 14px;
    font-weight: 400;
    height: 39px;
    border-radius: 24px;
  }

  /* modal scrollbar css */

  /* width */
  #termsConditionModal .modal-body::-webkit-scrollbar {
    width: 20px;
  }
  
  /* Track */
  #termsConditionModal .modal-body::-webkit-scrollbar-track {
    background-color: #D9D9D9; 
  }
   
  /* Handle */
  #termsConditionModal .modal-body::-webkit-scrollbar-thumb {
    background: #ED2024; 
  }
  
  /* Handle on hover */
  /* #termsConditionModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #b30000; 
  } */


  /* security code  */
  .security-code-area .security-form-area .code-input-area input{
    height: 40px;
    width: 48px;
    border-radius: 4px;
    background: #E2E2E2;
    border: 0;
  }

  /* password reset */
  #confirmModal .confirm-modal-btn{
    top: -12px;
    right: -12px;
  }
  /* responsive css */

  /* max width 991 */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .security-code-area .security-form-area .security-code-form,
  .forget-password-area .forget-password-form-area .forget-password-form,
  .reset-password-area .reset-password-form-area .reset-password-form{
    padding: 0 50px;
  }
}
  /* max width 991 */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .signup-area .signup-form,
  .signin-area .signin-form{
    width: 100%;
    display: block;
    /* float: left; */
    background: white;
    /* height: 5000px; */
    position: absolute;
    width: 100%;
    left: 0;
    top: 380px;
    /* width: 120px; */
    border-radius: 5px;
    padding: 35px;
  }
  .signin-footer-margin{
    margin-top: 372px;
  }
  .signup-footer-margin{
    margin-top: 550px;
  }
}


/* for mobile */
@media only screen and (max-width: 480px) {
    .signup-area{
        min-height: 500px;
        background-size: cover; 
        background-position: bottom;
        margin-bottom: 530px;
    }
    .signin-area{
        min-height: 500px;
        background-size: cover; 
        background-position: bottom;
        margin-bottom: 230px;
    }
    .signup-area .signup-form,
    .signin-area .signin-form{
        /* margin-top: 40vh; */
        margin: 0 10px 0 0px;
        padding: 10px 10px;
        background: rgba(255, 255, 255, 0.932);
        border-radius: 5px;
        position: absolute;
        padding: 30px 15px;
        top: 450px;
        box-shadow: 0px 0px 2px 2px gray;
    }
    #termsConditionModal .modal-body::-webkit-scrollbar {
        width: 10px;
    }

    .signin-footer-margin{
      margin-top: 360px;
    }
    .signup-footer-margin{
      margin-top: 640px;
    }
}









