.error-message {
  margin: 0;
  font-size: 24px;
  text-align: center;
}
.section-1{
    padding: 80px 5%;
    display: flex;
    justify-content: center
}
.section-1-form {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.25);
}
.section-1-form-header {
    background: #fbbf00;
    padding: 15px;
}
.section-1-form-header h2{
    font-size: 28px;
    margin: 0;
    color: rgb(68, 68, 68);
    text-align: center;
}
.section-1-form-body{
    padding: 15px;
}
.section-1-form-body p{
    font-size: 14px;
    margin: 0 0 10px 0;
}
.section-1-form-body p a{
    color: #000;
}
.input-row {
    display: flex;
}
.form-select, .form-select:hover, .form-select:focus, .form-select:active{
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid black;
    padding: 10px 0;
    outline: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius:0;
}
.form-input, .form-input:hover, .form-input:focus, .form-input:active{
    width: 100% !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
    padding: 10px 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    font-size: 14px !important;
}
.input-box {
  margin: 0 0 10px 0;
}
.input-box label{
font-size: 12px;
  color: #555;
  }
.input-box label .required{
    color: red;
    font-size: 24px;
}
.input-row {
    display: flex;
}
.input-row-left {
    width: 15%;
    padding-right: 15px;
}
.input-row-right {
    width: 85%;
}
.input-row-left .country-code{
    height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid black;
}
.input-row-left .country-code p{
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}
.input-row-left .country-code input{
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    padding: 0;
    border: 0;
}
.create-password-box {
    position: relative;
}
#passwordshowhide {
  position: absolute;
  width: auto;
  right: 7px;
  font-size: 14px;
  top: 7px;
  cursor: pointer;
    color: black;
    font-weight: bold;
    text-decoration: none;
}

/* custom checkbox css starts */
/* The container */
.cb-container {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.cb-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: rgba(139, 107, 0, 0.15);
}

/* On mouse-over, add a grey background color */
.cb-container:hover input ~ .cb-checkmark {
  background-color: rgba(139, 107, 0, 0.25);
}

/* When the checkbox is checked, add a blue background */
.cb-container input:checked ~ .cb-checkmark {
  background-color: rgba(139, 107, 0, 1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.cb-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cb-container input:checked ~ .cb-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cb-container .cb-checkmark:after {
  left: 8px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* custom checkbox css ends */
#candidateregisterFormMessage p, #candidateloginFormMessage p{
    color: red;
}

.section-1-form-footer{
    background: rgba(251, 191, 0, 0.5);
    padding: 15px;
    display: flex;
    justify-content: space-between;
}
.section-1-form-footer a{
    font-size: 14px;
    color: black;
}
.section-1-form-footer button, .section-1-form-footer button:hover, .section-1-form-footer button:focus, .section-1-form-footer button:active{
    padding: 7px 15px;
    background: black;
    color: white;
    border: 0;
    outline: 0;
    box-shadow: none;
}

@media (max-width: 1200px) {
    .section-1 {
        padding: 60px 2%;
    }
    .section-1-form-header h2{
        font-size: 24px;
    }
}
@media (max-width: 992px) {
    .section-1 {
        padding: 50px 2%;
    }
    .section-1-form-header h2{
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .section-1 {
        padding: 40px 2%;
    }
    .section-1-form-header h2{
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .input-row-left {
        width: 25%;
    }
    .input-row-right {
        width: 75%;
    }
    .section-1-form-header h2{
        font-size: 18px;
    }
    .input-row-left .country-code p{
        font-size: 12px;
    }
}