body{
    font-family: sans-serif;
    background: #08201b;
}

.flex-container {
    height: 100vh;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}
.flex-container img {
    margin-bottom:25px;
}
.flex-container input[type = "text"],
.flex-container input[type = "password"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 1px solid #357f66;
    padding: 14px 0;
    width: 100%;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
}
.flex-container input[type = "text"]:focus,
.flex-container input[type = "password"]:focus{
    width: 100%;
    border-color: #bed572;
}
.flex-container input[type = "submit"]{
    border:0;
    background: #357f66;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 1px solid #357f66;
    padding: 14px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
    width: 100%;
}
.flex-container input[type = "submit"]:hover{
    background: #bed572;
    border: 1px solid #bed572;
}
footer {
    width: 100%;
}
.footer {
    position: absolute;
    bottom: 50px;
    text-align: center;
}
.footer p {
    font-size:12px;
    opacity: 0.75
}