
#login-block{
    width: 25vw;
    margin: 0 auto;
    padding: 20vh 30px 50px;
}

#login-block img.login-bg{
    width: 100%;
}

form{
    width: 100%;
    line-height: 36px;
}

form div.input-row {
    line-height: 36px;
    height: 36px;
    padding: 0px 0px 10px;
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #58C3A0;
}

.input-icon{
    /* display: inline-block; */
    width: 36px;
    height: 36px;
    float: left;
    /* padding: 6px; */
    background-size: contain;
    background-position: center center;
}

#icon-phone {
    background-image: url(/static/images/phone.png);
}

#icon-code {
    background-image: url(/static/images/security.png);
}

div.input-row span, div.input-row input {
    line-height: 36px;
    height: 36px;
    display: inline-block;
}

div.input-row input {
    border: 0;
    padding: 0;
    background:none;
    margin-left: 10px;
    color: white;
    width: calc(100% - 120px);
}

input:focus {
    outline: none;
}

#btn-get-code {
    color: white;
    height: 28px;
    width: 68px;
    background: none;
    border: dashed 1px gray;
    cursor: pointer;
}

.btn-primary {
    height: 36px;
    padding: 0px 20px;
    color: white;
    background-color: #58C3A0;
    border: 0px;
    cursor: pointer;
}

.btn-primary.btn-warning {
    background-color: gray;
    float: right;
}

#btn-login{
    margin: 30px 0px;
    width: 100%;
}

.login-msg {
    text-align: center;
    color: #AAA;
    font-size: 11px;
  }
  
.notify {
    font-size: 15px;
}

.login-msg .check-icon {
    display: inline-block;
    width: 9px;
    height: 9px;
    padding: 3px;
    position: relative;
    top: 3px;
    margin-right: 3px;
    background-color: #58c3a0;
    border-radius: 7.5px;
    line-height: 15px;
}

.login-msg img.check-tick{
    width: 9px;
    height: 9px;
    line-height: 15px;
    position: absolute;
    left: 3px;
    display: none;
}

.msg-text.active img.check-tick{
    display: inline;
}

.login-msg .msg-text {
    display: inline-block;
    line-height: 24px;
    height: 24px;
    cursor: pointer;
}

.link-agreeement {
    display: inline;
    color: #58c3a0;
}