:root{
  --primery-color:#01062E;
}
body{
  width: 100%;
  padding: 0;
  margin: 0;
}
.error_msg{
  background-color:red;
  color:aliceblue;
  padding: 3px;
  border-radius:5px;
}
.success_msg{
  padding: 3px;
  border-radius:5px;
  background-color:green;
  color:aliceblue;
}
.update_form_wrapper .clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
  }
  .user_login_section{
      display: flex;
      height: 100vh;
      width: 100%;
    }
    .user_login_section .centered_login{
        margin: auto;
        max-width: 700px;
        width: 100%;
        border: 2px solid var( --primery-color);
        display: flex;
        border-radius: 10px;
    }
    
    
    .update_form_wrapper {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-radius: 10px;
    background: #fff;
    width: auto;
    width: 100%;
    height: 100%;
    /* box-sizing: border-box; */
    padding: 25px;
    position: relative;
    /* border-top: 5px solid var( --primery-color); */
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: none;
    transition: none;
    -webkit-animation: expand 0.8s 0.6s ease-out forwards;
    animation: expand 0.8s 0.6s ease-out forwards;
    opacity: 0;
  }
  .update_form_wrapper .form_container{
    height: 100%;
  }
  .update_form_wrapper h2 {
      font-size: 1em;
      line-height: 1.5em;
      margin: 0;
    }
    .update_form_wrapper p{
        color: aliceblue;
    }
  .update_form_wrapper .title_container {
    text-align: center;
    padding-bottom: 5px;
  }
  .update_form_wrapper h3 {
    font-size: 1.1em;
    font-weight: normal;
    line-height: 1.5em;
    margin: 0;
  }
  .update_form_wrapper label {
    font-size: 12px;
  }
  .update_form_wrapper .row {
    margin: 10px -15px;
  }
  .update_form_wrapper .row  form label{
    font-size: 15px;
    font-weight: 600;
  }
  .update_form_wrapper .row a{
    color: rgb(238, 85, 85);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
  }
  .update_form_wrapper .row a:hover{
    color: rgb(238, 85, 85);
  }
  .update_form_wrapper .row > div {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .update_form_wrapper .col_half {
    width: 50%;
    float: left;
  }
  .update_form_wrapper .input_field {
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
    -webkit-animation: bounce 0.6s ease-out;
    animation: bounce 0.6s ease-out;
    border-radius: 5px;
  }

  .update_form_wrapper .input_field > span {
    position: absolute;
    left: 100;
    top: 0;
    color: #333;
    height: 100%;
    border-right: 1px solid #cccccc;
    text-align: center;
    width: 30px;
    display: flex;
}
.update_form_wrapper .input_field > span > svg {
      margin: auto;
    font-size: 15px;
}
.update_form_wrapper .textarea_field > span > svg {
    padding-top: 10px;
    font-size: 15px;
  }

  /* ________________________ eye icon start */
  .update_form_wrapper .input_field .toggle-icon {
    position: absolute;
    right: 0;
    top: 0;
    color: #333;
    height: 100%;
    border-right: 1px solid #cccccc;
    text-align: center;
    width: 30px;
    display: flex;
    cursor: pointer;
}
  /* ________________________ eye icon end */



  .update_form_wrapper input[type=text], .update_form_wrapper input[type=email], .update_form_wrapper input[type=password] , .update_form_wrapper input[type=number] {
    width: 100%;
    padding: 8px 10px 9px 35px;
    height: 35px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  /* For Webkit browsers like Chrome, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Optional: Styling the input to make it look consistent */
input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
} 
  .update_form_wrapper input[type=text]:hover, .update_form_wrapper input[type=email]:hover, .update_form_wrapper input[type=password]:hover {
    background: #fafafa;
  }
  .update_form_wrapper input[type=text]:focus, .update_form_wrapper input[type=email]:focus, .update_form_wrapper input[type=password]:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid var( --primery-color);
    background: #fafafa;
  }

  .update_form_wrapper input[type=submit] {
    border-radius: 5px;
    background: var( --primery-color);
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 2px solid var( --primery-color);
    margin-top: 15px;
  }
  .update_form_wrapper input[type=submit]:hover {
    background: transparent;
    color: var( --primery-color);
  }
  /* .update_form_wrapper input[type=submit]:focus {
    background: var( --primery-color);
  } */
  .update_form_wrapper input[type=checkbox], .update_form_wrapper input[type=radio] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .update_form_wrapper .form_container .row .col_half.last {
    border-left: 1px solid #cccccc;
  }
  .update_form_wrapper .form_container .logo_section{
    display: flex;
    padding-bottom: 10px;
  }
  .update_form_wrapper .form_container .logo_section a,
  .update_form_wrapper .form_container .logo_section img{
    margin: auto;
  }
  
 .update_form_wrapper .checkbox_option label {
    margin-right: 1em;
    position: relative;
  }
 .update_form_wrapper .checkbox_option label:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-right: 0.5em;
    vertical-align: -2px;
    border: 2px solid #cccccc;
    padding: 0.12em;
    background-color: transparent;
    background-clip: content-box;
    transition: all 0.2s ease;
  }
 .update_form_wrapper .checkbox_option label:after {
    border-right: 2px solid #000000;
    border-top: 2px solid #000000;
    content: "";
    height: 20px;
    left: 2px;
    position: absolute;
    top: 7px;
    transform: scaleX(-1) rotate(135deg);
    transform-origin: left top;
    width: 7px;
    display: none;
  }
 .update_form_wrapper .checkbox_option input:hover + label:before {
    border-color: #000000;
  }
 .update_form_wrapper .checkbox_option input:checked + label:before {
    border-color: #000000;
  }
 .update_form_wrapper .checkbox_option input:checked + label:after {
    -moz-animation: check 0.8s ease 0s running;
    -webkit-animation: check 0.8s ease 0s running;
    animation: check 0.8s ease 0s running;
    display: block;
    width: 7px;
    height: 20px;
    border-color: #000000;
  }
  
 .update_form_wrapper .radio_option label {
    margin-right: 1em;
  }
 .update_form_wrapper .radio_option label:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-right: 0.5em;
    border-radius: 100%;
    vertical-align: -3px;
    border: 2px solid #cccccc;
    padding: 0.15em;
    background-color: transparent;
    background-clip: content-box;
    transition: all 0.2s ease;
  }
  .update_form_wrapper .radio_option input:hover + label:before {
    border-color: #000000;
  }
  .update_form_wrapper .radio_option input:checked + label:before {
    background-color: #000000;
    border-color: #000000;
  }
  
  .update_form_wrapper .select_option {
    position: relative;
    width: 100%;
  }
  .update_form_wrapper .select_option select {
    display: inline-block;
    width: 100%;
    height: 35px;
    padding: 0px 15px;
    cursor: pointer;
    color: #7b7b7b;
    border: 1px solid #cccccc;
    border-radius: 0;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease;
  }
  .update_form_wrapper .select_option select::-ms-expand {
    display: none;
  }
  .update_form_wrapper .select_option select:hover, .select_option select:focus {
    color: #000000;
    background: #fafafa;
    border-color: #000000;
    outline: none;
  }
  
  .update_form_wrapper .select_arrow {
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-width: 8px 5px 0 5px;
    border-style: solid;
    border-color: #7b7b7b transparent transparent transparent;
  }
  
  .update_form_wrapper .select_option select:hover + .select_arrow, .select_option select:focus + .select_arrow {
    border-top-color: #000000;
  }
  
  .update_form_wrapper .credit {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 15px;
    color: var( --primery-color);
  }
  .update_form_wrapper .credit a {
    color: var( --primery-color);
  }

  .user_login_section .centered_login .title_container p{
    color: var( --primery-color);
  }

  /* ____________________________________ ACTIVE */

  .user_login_section .centered_login .active{
    background-color: var( --primery-color);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100%;
    padding-top: 60px;
}
.user_login_section .centered_login .active .title_container h2{
    color: aliceblue;
}
.user_login_section .centered_login .active .title_container p{
  color: aliceblue;
}
.user_login_section .centered_login .active input[type='submit']{
    background-color: aliceblue;
    color: var( --primery-color);
    border: 1px solid aliceblue;
}
.user_login_section .centered_login .active input[type='submit']:hover{
    background-color: var( --primery-color);
    color: aliceblue;
}
  
  @-webkit-keyframes check {
    0% {
      height: 0;
      width: 0;
    }
    25% {
      height: 0;
      width: 7px;
    }
    50% {
      height: 20px;
      width: 7px;
    }
  }
  @keyframes check {
    0% {
      height: 0;
      width: 0;
    }
    25% {
      height: 0;
      width: 7px;
    }
    50% {
      height: 20px;
      width: 7px;
    }
  }
  @-webkit-keyframes expand {
    0% {
      -webkit-transform: scale3d(1, 0, 1);
      opacity: 0;
    }
    25% {
      -webkit-transform: scale3d(1, 1.2, 1);
    }
    50% {
      -webkit-transform: scale3d(1, 0.85, 1);
    }
    75% {
      -webkit-transform: scale3d(1, 1.05, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      opacity: 1;
    }
  }
  @keyframes expand {
    0% {
      -webkit-transform: scale3d(1, 0, 1);
      transform: scale3d(1, 0, 1);
      opacity: 0;
    }
    25% {
      -webkit-transform: scale3d(1, 1.2, 1);
      transform: scale3d(1, 1.2, 1);
    }
    50% {
      -webkit-transform: scale3d(1, 0.85, 1);
      transform: scale3d(1, 0.85, 1);
    }
    75% {
      -webkit-transform: scale3d(1, 1.05, 1);
      transform: scale3d(1, 1.05, 1);
    }
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
      opacity: 1;
    }
  }
  @-webkit-keyframes bounce {
    0% {
      -webkit-transform: translate3d(0, -25px, 0);
      opacity: 0;
    }
    25% {
      -webkit-transform: translate3d(0, 10px, 0);
    }
    50% {
      -webkit-transform: translate3d(0, -6px, 0);
    }
    75% {
      -webkit-transform: translate3d(0, 2px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  @keyframes bounce {
    0% {
      -webkit-transform: translate3d(0, -25px, 0);
      transform: translate3d(0, -25px, 0);
      opacity: 0;
    }
    25% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
    50% {
      -webkit-transform: translate3d(0, -6px, 0);
      transform: translate3d(0, -6px, 0);
    }
    75% {
      -webkit-transform: translate3d(0, 2px, 0);
      transform: translate3d(0, 2px, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  @media (max-width: 630px) {
    .user_login_section {
      padding-left: 5px;
      padding-right: 5px;
    }
    .user_login_section .centered_login{
      border: 2px solid transparent;
      display: block;
      padding: 15px;
    }
    .user_login_section .centered_login .update_form_wrapper{
      border: 2px solid var(--primery-color);
      padding: 0px;
      padding-top: 15px;
      width: 100%;
      margin-bottom: 15px;
    }
    .user_login_section .centered_login .update_form_wrapper .row{
      padding-left: 5px;
      padding-right: 5px;
    }

  .user_login_section .centered_login .active{
    padding-top: 15px;
      background-color: var(--primery-color);
      /* border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px; */
      border-radius: 10px;
  }
  .user_login_section{
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
  @media (max-width: 600px) {

    .update_section{
        padding-top: 15rem;
        height: auto;
        width: 100%;
    }
    .update_form_wrapper .update_form_wrapper .col_half {
      width: 100%;
      float: none;
    }
  
    .update_form_wrapper .bottom_row .col_half {
      width: 50%;
      float: left;
    }
  
    .update_form_wrapper  .form_container .row .col_half.last {
      border-left: none;
    }
  
    .update_form_wrapper .remember_me {
      padding-bottom: 20px;
    }
  }