body{
    margin: 0;
    padding: 0;
    /* background: url(bg.jpg); */
    background-color: #f1f1f1;
    background-size: cover;
    font-family: sans-serif;
}

.loginBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 350px;
    height: 380px;
    padding: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    background: rgba(40,40,39,.3);
}

.user{
    /* width: 100px;
    height: 100px;*/
    border-radius: 0%;
    overflow: hidden;
    position: absolute;
    top: calc(-150px/2 + 45px);
    left: calc(50% - 170px);
    width: 150px;
    cursor: pointer;
}

h2{
    margin: 0;
    padding: 0px 0 20px;
    color: #5e8695;
    text-align: center;
}

.loginBox p{
    margin: 0;
    padding: 0;
    /* font-weight: bold; */
    color: #f1f1f1;
}

.loginBox input{
    width: 100%;
    margin-bottom: 20px;
}

.loginBox input[type="text"],
.loginBox input[type="password"]{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}

::placeholder{
    color: rgba(255,255,255,.5);
}

.loginBox input[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    color: #f1f1f1;
    font-size: 16px;
    background: #5e8695;
    cursor: pointer;
    border-radius: 20px;
}

.loginBox input[type="submit"]:hover{
    background: #f1f1f1;
    color: #5E8695;
}

.loginBox a{
    color: #5e8695;
    font-size: 16px;
    font-weight: 100;
    text-decoration: none;
}

.loginBox div{
    text-align: right;
}

.loginBox em{
    color: #fff;
    font-size: 14px;
    font-weight: 100;
    text-decoration: none;
}

/* ----------------------------------------- */
.regisBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    height: 750px;
    padding: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    background: rgba(40,40,39,.3);
}
.regisBox p{
    margin: 0;
    padding: 0;
    /* font-weight: bold; */
    color: #f1f1f1;
}

.regisBox input{
    width: 100%;
    margin-bottom: 20px;
}

.regisBox input[type="text"],
.regisBox input[type="password"]{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}

::placeholder{
    color: rgba(255,255,255,.5);
}
.regisBox input[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    color: #f1f1f1;
    font-size: 16px;
    background: #5e8695;
    cursor: pointer;
    border-radius: 20px;
}

.regisBox input[type="submit"]:hover{
    background: #f1f1f1;
    color: #5E8695;
}

.regisBox a{
    color: #5e8695;
    font-size: 16px;
    font-weight: 100;
    text-decoration: none;
}

.regisBox div{
    text-align: right;
}

.regisBox em{
    color: #fff;
    font-size: 14px;
    font-weight: 100;
    text-decoration: none;
}
/* ----------------------------------------- */





.share {
    z-index: 9999;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.3rem;
    text-decoration: none;
    /* color: var(--primary); */
    color: #5E8695;
    transition: .5s;
}

.share:hover {
    transform: scale(1.1);
}

.share i {
    line-height: 50px;
}


.share_next {
    z-index: 9999;
    /* position: absolute; */
    top: 15px;
    right: 15px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 1.3rem;
    text-decoration: none;
    /* color: var(--primary); */
    color: #5E8695;
    transition: .5s;
}

.share_next:hover {
    transform: scale(1.1);
}

.share_next i {
    line-height: 50px;
}

a {
    font-weight: 100;

}

.error{
    color: #a94442;
    text-align: left;    
}


.success{
    color: #000;
    text-align: left;    
}