body {
    background-image: url('../../img/FindThePassword.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}
body .container {
  width: 1000px;
  height: 100%;
  margin: 50 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}
    body .container .title {
        margin-top: 5%;
        font-size: 50px;
        font-weight: 700;
        /*text-shadow: 3px 2px 5px #fff;*/
        color: #fff;
        letter-spacing: 3px;
    }
    body .container .register-box {
        width: 600px;
        height: auto;
        border: 5px solid #fff;
        border-radius: 5px;
        background-color: rgb(255 255 255 / 83%);
        box-sizing: border-box;
        padding: 25px;
        margin: 35px;
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
    }

        body .container .register-box .register-title {
            box-sizing: border-box;
            /* border-left: 10px solid #06f; */
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-left: 10px;
            color: #0059b3;
            text-align: center;
            letter-spacing: 25px;
        }
body .container .register-box .btn-group {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
    body .container .register-box .btn-group .btn-register {
        cursor: pointer;
        color: #fff;
        font-size: 22px;
        font-weight: 600;
        border-radius: 2px;
        border: none;
        width: 100%;
        height: 40px;
        margin-right: 15px;
        letter-spacing: 5px;
    }
body .container .register-box .btn-group .btn-register:last-child {
  margin-right: 0;
  background-color: #0059b3;
}
        body .container .register-box .input-box {
            width: 100%;
            height: 100px;
            display: flex;
            flex-flow: column nowrap;
            justify-content: flex-end;
            align-content: space-around;
        }
body .container .register-box .input-box .tip {
  color: #ff8000;
  font-size: 16px;
  padding: 5px 0 0 5px;
}
body .container .register-box .input-box p {
  margin: 0;
  padding: 5px 0 8px 5px;
  color: #f00;
  font-size: 14px;
}
body .container .register-box .input-box p.show {
  display: block;
}
body .container .register-box .input-box .inputs {
  height: 60px;
  position: relative;
  box-sizing: border-box;
}
    body .container .register-box .input-box .inputs input {
        box-sizing: border-box;
        position: absolute;
        width: 550px;
        height: 60px;
        padding: 30px 20px 10px 65px;
        border: 1px solid #dddddd !important;
        font-size: 20px;
        color: #000;
        /* border: none !important; */
        background-color: #f8f8f8;
        -webkit-appearance: none !important;
        -moz-appearance: none;
        appearance: none !important;
        outline-style: none;
        border-radius: 5px;
        transition: all 0.3s;
    }

body .container .register-box .input-box .inputs input.error {
  border: 1px solid #f00;
  background-color: #ffb3b3;
}

    body .container .register-box  .input-box .inputs label {
        position: absolute;
        left: 65px;
        top: 15px;
        color: #8c8c8c;
        font-size: 20px;
        transition: all 0.3s;
        user-select: none;
    }

    body .container .register-box .input-box .inputs .usericon {
        position: absolute;
        height: 36px;
        left: 10px;
        top: 10px;
        border-right: 10px solid transparent;
        filter: drop-shadow(1px 0px 0 #0059b3);
    }
    body .container .register-box .input-box .inputs .usericon img {
        width: 100%;
    }

body .container .register-box .input-box .inputs label.error {
  color: #f00;
}
body .container .register-box .input-box .inputs .btn-verify {
  position: absolute;
  width: 140px;
  height: 40px;
  right: 10px;
  top: 10px;
  color: #fff;
  border: none;
  background-color: #0059b3;
  border-radius: 3px;
  font-size: 16px;
}
    body .container .register-box .input-box .inputs .show {
        position: absolute;
        width: 80px;
        height: 36px;
        right: 10px;
        top: 10px;
        float: right;
    }
