input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
    width: 0;
    height: 0;
}

* {
    padding: 0px;
    margin: 0px;
}

body {
    width: 100%;
    height: 100vh;
    position: relative;

}

.signup_box {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f4f4f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.signup_box_active {
    opacity: 1;
    pointer-events: fill;
    overflow: hidden;
}

.box {
    width: 400px;
    height: auto;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 35px -20px rgb(0 0 0);
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}

.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: fill;

}

.box .close_button {
    font-size: 30px;
    font-weight: bold;
    float: right;
    cursor: pointer;
    rotate: 45deg;
    margin-bottom: 12px;
}

.box .button_box {
    width: 100%;
    margin: 20px 0px;
    display: flex;
    position: relative;
    direction: ltr;
}

.box .button_box .signup_button,
.box .button_box .login_button {
    width: 50%;
    /* padding: 10px 20px; */
    margin: 4px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: 0.6s;
}

.box .button_box .slider_button {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(107deg, rgb(13, 198, 180) 8.1%, rgb(33, 198, 138) 79.5%);
    z-index: -1;
    border-radius: 5px;
    left: 0%;
    transition: all 0.4s cubic-bezier(0.150, -0.100, 0.700, -0.500);
}

.box .form_box {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.box .form_slider {
    position: absolute;
    width: 200%;
    display: flex;
    left: -100%;
    transition: all 0.4s cubic-bezier(0.150, -0.100, 0.700, -0.500);
}

.box .form_box form {
    width: 100%;
    margin: 0px 5px;
}

.box .form_box .login_form {
    padding-top: 12px;
}

.form_box form .input_field_box {
    height: auto;
    overflow-y: auto;
}

.form_box form .input_field_box::-webkit-scrollbar {
    display: none;
}

.form_box form .input_box {
    width: 100%;
    margin: 30px 0px;
    text-align: center;
    position: relative;
}

.form_box form .input_box input {
    width: 95%;
    font-size: 25px;
    padding: 8px 0px;
    border-width: 0px 0px 2px 0px;
    outline: none;
}

.form_box form .input_box label {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 18px;
    pointer-events: none;
    color: #6d6d6d;
    transition: 0.3s;
}

.form_box form .input_box input:focus,
.form_box form .input_box input:valid {
    border-color: #102a71;
}

.form_box form .input_box input:focus+label,
.form_box form .input_box input:valid+label {
    top: -16px;
    font-size: 18px;
    color: #102a71;
}

.form_box form .link,
.form_box form .contact_link {
    font-size: 12px;
    text-align: center;
    margin: 14px 0px;
}

.form_box form .link a,
.form_box form .contact_link a {
    color: #102a71;
    text-decoration: none;
    font-weight: bold;
}

.form_box form .password_link {
    text-align: right;
    margin: 20px 0px;
    font-size: 12px;
}

.form_box form .password_link a {
    text-decoration: none;
    font-weight: bold;
    color: #102a71;
}

.form_box form button {
    width: 100%;
    padding: 24px 34px;
    font-size: 25px;
    border: none;
    background: linear-gradient(107deg, rgb(13, 198, 180) 8.1%, rgb(33, 198, 138) 79.5%);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_box form button:active {
    transform: scale3d(0.9, 0.9, 0.9);
}


/* .eye-icon {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
  } */

/*  --------------------------------------- New Input --------------------------------------- */
  div.input-block {
    position: relative;
    margin-top: 26px;
  }

  div.input-block input {
    font-weight: 500;
    font-size: 22px;
    /* color: #495055; */
    width: 320px;
    padding: 10px 18px;
    border-radius: .5rem;
    border: 2px solid  #838688;
    outline:none;

  }

  div.input-block span.placeholder {
    position: absolute;
    margin: 12px 0;
    padding: 0 4px;
    font-family: Roboto, sans-serif;

    color:  #6c757d;

    display: flex;
    align-items: center;

    font-size: 16px;

    top: 0;
    right: 18px;

    transition: all 0.2s;
    transform-origin: 0% 0%;
    background: none;
    pointer-events: none;

  }

  div.input-block input:valid + span.placeholder,
  div.input-block input:focus + span.placeholder {
  transform: scale(0.8) translateY(-30px);
  background: #fff;
  }

  div.input-block input:focus{
  color: #284B63;
  border-color: #284B63;
  }

  div.input-block input:focus + span.placeholder {
  color: #284B63;
  }
/*  --------------------------------------- End  New Input --------------------------------------- */
