* {
    box-sizing: border-box;
}
:root {
    --green-color: #00A350;
    --yellow-color:#F0E42F;
    --grey-color:#F8F8F9;
}
body {
    margin:0;
    padding:0;
    background-color: #002558;
    font-family: "Roboto", sans-serif;
}

.success-message,
.error-message {
    color: #fff;
    padding: 3px 0;
    text-align: center;
    position: relative;
}
.success-message {
    background-color: #39c38d;
}
.success-message a {
    color: inherit;
    text-decoration: underline;
}
.error-message {
    background-color: #ad0e43;
}
.error-message a {
    color: inherit;
    text-decoration: underline;
}

.login-form {
    width:400px;
    margin:200px auto 0 auto;
}
.login-form img {
    max-width:100%;
}
.login-form .lf-logo {
    margin-bottom:25px;
}

.lf-box {
    background-color: rgba(255,255,255,0.7);
    padding: 35px;
    border-radius: 5px;
}

.lf-header {
    text-align: center;
}
.lf-header h2 {
    margin:0;
}

.login-form input[type=text],
.login-form input[type=email],
.login-form input[type=password] {
    width:100%;
    outline: 0;
    border-radius: 5px;
    background: #F2F2F2;
    border: 1px solid #FFF;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
}

.login-form button {
    width:100%;
    text-transform: uppercase;
    outline: 0;
    border-radius: 10px;
    background: #002558;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
}

.lf-footer {
    text-align: center;
    margin:15px 0 0 0;
    font-size: 14px;
}
.lf-footer a {
    color:inherit;
    text-decoration: none;
}

.lf-footer a:hover {
    text-decoration: underline;
}
