body{
    margin: 0;
    padding: 0;
    background: url('/img/welcome.jpg');
    background-size: cover;
    background-position: center;
    font-family: sans-serif;
}
.login-box{
    width: 320px;
    height: 420px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    top: 60%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    padding: 70px 30px;
}
.avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}
h1{
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}
.login-box p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.login-box input,button{
    width: 100%;
    margin-bottom: 20px;
}
.login-box input[type="password"], input[type="email"],input[type="text"]
{
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}
.login-box button[type="submit"]
{
    border: none;
    outline: none;
    height: 40px;
    background: #1c8adb;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}
.login-box button[type="submit"]:hover
{
    cursor: pointer;
    background: #39dc79;
    color: #000;
}

.login-box a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}
.login-box a:hover
{
    color: #39dc79;
}
/*.header{*/
    /*text-align: center;*/
/*}*/
/*.header span*/
/*{*/
    /*color: #39dc79;*/
    /*text-transform: uppercase;*/
    /*width: 100%;*/
/*}*/
/*.text1{*/
    /*font-size: 60px;*/
    /*font-weight: 700;*/
    /*letter-spacing: 8px;*/
/*}*/
/*.text2{*/
    /*font-size: 40px;*/
    /*font-weight: 300;*/
    /*letter-spacing: 8px;*/
/*}*/
.header{
    text-align: center;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.header span{
    text-transform: uppercase;
    display: block;
}
.text1{
    color: #b4a232;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: transparent;
    position: relative;
    animation: text 3s 1;
}
.text2{
    background: #8aa936;;
    font-size: 40px;
    font-weight: 700;
    color: #6ab04c;
}

@keyframes text {
    0%{
        color: #b4a232;
        margin-bottom: -40px;
        background: #274a06;
    }
    30%{
        letter-spacing: 25px;
        margin-bottom: -40px;
        background: #274a06;
    }
    85%{
        letter-spacing: 8px;
        margin-bottom: -40px;
        background: #274a06;

    }
}































































