body{
    background: url(../../image/login.png) no-repeat;
    max-height: 100vh;
    background-size: cover;
    /*background-color: #ffcd34;*/
}
.box {
    width: 300px;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 67%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    background:rgba(25,25,25,0.8);
    box-shadow:2px 2px 5px #000;

    text-align: center;
}
.box h1 {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}
.box input[type='text'],
.box input[type='password'] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
}
.box input[type='text']:focus,
.box input[type='password']:focus {
    width: 280px;
    border-color: #2ecc71;
}
.submit {
    border: 0;
    background: none;
    margin: 20px auto;
    margin-top: 0;
    display: inline-block;
    text-align: center;
    border: 2px solid #3498db;
    padding: 10px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
}
.submit:hover {
    background: #2ecc71;
    border-color: #2ecc71;
}