html,
body {
    width: 100%;
    /* height: 100%; */
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: rgb(255, 255, 255);
}

.box {
    background-color: white;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    border: 1px solid rgb(3, 76, 110);
    box-sizing: border-box;
    box-shadow: 0px 12px 20px 0px rgba(62, 114, 226, 0.5);
}

.boxs {
    background-color: white;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    border: 1px solid rgb(3, 76, 110);
    box-sizing: border-box;
    box-shadow: 0px 12px 20px 0px rgba(62, 114, 226, 0.5);
}

.box h2 {
    margin: 0 0 10px;
    padding: 0;
    color: #0766B9;
    text-align: center;
}

.box .inputBox {
    position: relative;
}

.box .inputBox input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #0766B9;
    letter-spacing: 1px;
    margin-top: 14px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid rgb(3, 76, 110);
    outline: none;
    background: transparent;
}

.box .inputBox label {
    position: absolute;
    top: 0;
    left: 0;
    /* padding: 10px 0; */
    font-size: 14px;
    color: #0766B9;
    pointer-events: none;
    /* transition: .5s; */
    /* animation: lblonLoad 1s forwards 0s ease; */
}


.boxs .inputBox label {
    position: absolute;
    top: 0;
    left: 0;
    color: #0766B9;
    pointer-events: none;
}


@keyframes lblonLoad {
    0% {
        transform: rotate(0) translateY(0px);
        opacity: 0;
    }

    100% {
        transform: rotate(360) translateY(0);
        opacity: 1;
    }
}


/* .box .inputBox input:focus~label,
.box .inputBox input:valid~label {
    top: -25px;
    left: 0;
    color: rgb(3, 76, 110);
    font-size: 12px;
} */

.box input[type='submit'] {
    background-color: #0766B9;
    border: #0766B9 solid 2px;
    outline: none;
    color: white;
    font-weight: bolder;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

.boxs input[type='submit'] {
    background-color: #0766B9;
    border: #0766B9 solid 2px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

.box input[type='submit']:hover {
    background-color: white;
    color: #0766B9;
}

.boxs input[type='submit']:hover {
    color: #0766B9;
}


@media(max-width: 720px) {
    .box {
        width: 80%;
    }
}

.text-light {
    color: black;
    text-align: center;
    margin-top: 3em;
}


.namebottomright {
    position: absolute;
    bottom: 8px;
    left: 16px;
    font-size: 10px;
}

@media screen and (max-width: 700px) {
    .namebottomright {
        position: absolute;
        bottom: 8px;
        left: 16px;
        font-size: 6px;
    }
}