:root
{
    --blue_schunk: #009EE0;
    --blue: #003D6A;
    --white: #FFF;
}

.loginv {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.form-box {
    background-color: rgba(255, 255, 255, .8);
    box-shadow: 0 0 30px rgba(0, 0, 0, .8);
    padding: 2.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 37.5rem;
}

.input-box {
    position: relative;
    width: 100%;
    height: 3.125rem;
    border-bottom: 2px solid var(--blue);
    margin: 30px 0;
}

.form-box h2 {
    font-size: 2em;
    color: var(--blue);
    text-align: center;
}

.input-box input {
    width: 100%;
    padding: 0.625rem;
    font-size: 1em;
    color: var(--blue);
    border: none;
    border-bottom: 1px solid var(--blue);
    outline: none;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1.3em;
    color: var(--blue);
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: -5px;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: var(--blue);
    font-weight: 600;
    padding: 0 35px 0 5px;
}

.input-box .icon {
    position: absolute;
    right: 8px;
    font-size: 1.2em;
    color: var(--blue);
    line-height: 57px;
}

.remember-forgot {
    font-size: .9em;
    color: var(--blue);
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input {
    accent-color: var(--blue);
    margin-right: 3px;
}

.remember-forgot a {
    color: var(--blue);
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.bt {
    width: 100%;
    height: 45px;
    background: var(--blue_schunk);
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: var(--white);
    font-weight: 500;
}

.containerr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    padding-top: 8rem;
  }

  .boxx {
    width: 17.5rem;
    height: 11.25rem;
    padding: 1.25rem;
    text-align: center;
    background-color: var(--blue);
  }