html, body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #f1f1f1;
    overflow-x: hidden;
}

/* Messages */
.info-msg,
.success-msg,
.warning-msg,
.error-msg {
    margin: 10px 0;
    padding: 10px;
    border-radius: 3px 3px 3px 3px;
}

.info-msg {
    color: #059;
    background-color: #bef;
}

.success-msg {
    color: #270;
    background-color: #dff2bf;
}

.warning-msg {
    color: #9f6000;
    background-color: #feefb3;
}

.error-msg {
    color: #d8000c;
    background-color: #ffbaba;
}

/* Tables */
table {
    text-align: left;
    border-collapse: separate;
    border: 1px solid #ffa800;
    width: 100%;
    border-radius: 3px;
}

/* Login Form */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 480px;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
}

.login-container img {
    width: 200px;
}

.login-container p, .login-container td {
    font-size: 0.9rem;
    align-self: flex-start;
    color: rgba(0, 0, 0, 0.5);
}

.login-container a {
    color: rgba(0, 0, 0, 0.5);
    margin-left: 15px;
}

.login-container a:hover, .login-container a:focus {
    color: rgba(0, 0, 0, 0.5);
}

.login {
    position: relative;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 3px;
    background: #fafafa;
    animation: input_opacity 0.2s cubic-bezier(.55, 0, .1, 1);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.login > header {
    position: relative;
    width: 100%;
    padding: 10px;
    margin: -10px -10px 25px -10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffa800;
    color: #fafafa;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12),
    0px 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.login > header:before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 5px;
    padding: 10px;
    margin: -10px 0 0 -10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.156);
    color: transparent;
    z-index: 5;
}

.login > .mzlogo {
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.login > header h2 {
    margin: 50px 0 10px 0;
}

.login > header h3 {
    color: rgba(255, 255, 255, 0.9);
}

.login-language {
    text-align: end;
}

/* Form */
.login-form {
    padding: 15px;
    box-sizing: border-box;
}

/* Inputs */
.login-input {
    position: relative;
    width: 100%;
    padding: 10px 5px;
    margin: 0 0 25px 0;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    background: transparent;
    font-weight: 500;
    opacity: 1;
    animation: input_opacity 0.8s cubic-bezier(.55, 0, .1, 1);
    transition: border-bottom 0.2s cubic-bezier(.55, 0, .1, 1);
}

.login-input-email {
    position: relative;
    width: 100%;
    padding: 3px 3px;
    margin: 0 0 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.login-input:focus {
    outline: none;
    border-bottom: 2px solid #ffa800;
}

/* Submit Button */
.submit-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
    padding: 10px;
    margin: 35px -25px -25px -25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.submit-button {
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    color: #ffa800;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    opacity: 1;
    animation: input_opacity 0.8s cubic-bezier(.55, 0, .1, 1);
    transition: background 0.2s ease-in-out;
}

.submit-button.raised {
    padding: 5px 10px;
    color: #fafafa;
    background: #ffa800;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15),
    0px 1px 5px 0px rgba(0, 0, 0, 0.25),
    0px 3px 1px -2px rgba(0, 0, 0, 0.35);
}

.submit-button:hover {
    background: rgba(0, 0, 0, 0.15);
}

.submit-button.raised:hover {
    background: #ffa800;
}
