:root {
    --blue: #5EA3DE;
    --dark: #1D2733;
    --ov: #0000001b;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

#toggle{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url(/assets/img/show.jpg);
    background-size: cover;
    cursor: pointer;
}
#toggle.hide{
    background: url(/assets/img/hide.png);
    background-size: cover;
}

.container-xs {
    margin-right: auto;
    margin-left: auto;
    max-width: 500px;
}

.body {
    background: var(--dark);
    width: 100vw;
    height: 100vh;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    color: #fff;
}

.four {
    width: 100vw;
    height: 100vh;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.text-center {
    text-align: center;
}

b { font-weight: 500; }

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}

.bgimg {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgimg img {
    width: 150px;
}

.container h2 {
    font-size: 18px;
    font-weight: 600;
}

.kami {
    margin-top: 20px;
    font-size: 13px;
    color: #bcbcbc;
    text-align: center;
}

.form-otp {
    margin-top: 20px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-otp input {
    height: 43px;
    width: 35px;
    border: 2px solid #7f7f7f;
    margin: 0px 2px;
    outline: none;
    background: none;
    border-radius: 7px;
    font-size: 16px;
    text-align: center;
    transition: .2s;
    color: white;
}

.form-otp input:focus {
    transition: .2s;
    border: 2px solid var(--blue);
}

.container .sms {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

.clear {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    right: 0;
}