html, body {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.index-conainer {
    width: 100%;
    height: 100%;
    background-image: url(https://ec.eclinical-dev.edetekapps.com/html/admin/assets/img/bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
}

.form-item {
    margin-top: 40px;
    width: 382px;
    height: 428px;
    box-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
    border-radius: 4px;
}

.form-item img {
    width: 382px;
    height: 152px;
}

.form-item .content {
    padding: 16px 0;
}

.form-item .content h1 {
    padding: 0 16px;
    margin: 0;
    font-size: 20px;
    font-weight: normal;
}

.form-item .content .box {
    padding: 0 16px;
    margin-top: 25px;
    position: relative;
}

.form-item .content .box input {
    width: 100%;
    height: 31px;
    border: none;
    outline: none;
    /* padding: 6px 0; */
    border-bottom: 2px solid #bebdbd;
}

.form-item .content .box input:focus {
    height: 30px;
    border-color: rgb(96, 125, 139);
    border-width: 3px;
}

.form-item .content .box input:focus+label{
    bottom: 30px;
    font-size: 10px;
}

.form-item .content .box label {
    position: absolute;
    left: 16px;
    bottom: 10px;
    font-size: 13.3px;
    color: #999;
}

.form-item .content .btn {
    margin-top: 30px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-item .content .btn button {
    border: none;
    outline: none;
    cursor: pointer;
}

.form-item .content .btn button:first-child {
    color: #2196f3;
    padding: 0 16px;
    height: 36px;
    background: none;
}

.form-item .content .btn button:first-child:hover {
    background: rgb(245, 245, 245);
    border-radius: 4px;
}

.form-item .content .btn button:last-child {
    box-shadow: 0 0 0 0 rgb(0 0 0 / 20%), 0 0 0 0 rgb(0 0 0 / 14%), 0 0 0 0 rgb(0 0 0 / 12%);
    background-color: #ff5722;
    color: #fff;
    font-size: 14px;
    padding: 0 16px;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
}

.footer {
    font-size: 12px;
    color: #999;
    margin-top: 60px;
}

.footer a {
    margin-left: 20px;
    color: #999;
    text-decoration: none;
}