﻿* {
    font-family: Calibre, Arial, Helvetica, sans-serif;
    font-size: 16px;
}
html, body, .container {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding:0;
    margin:0;
}
body {
    background-image: url('../gfx/maritech-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    line-height: 1;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.box {
    background-color: #fff;
    background-image: url('../logo-cloud.svg');
    background-position: top 20px center;
    background-repeat: no-repeat;
    background-size: 70%;
    padding: 80px 20px 20px 20px;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
}
.external-provider {
    color: #fff;
    background-color: #003160;
    text-decoration: none;
    background-position: center left 10px;
    background-repeat: no-repeat;
    padding: 14px 10px 14px 40px;
    text-align: center;
    margin: 2px 0;
    border-radius: 4px;
}
.external-provider.Microsoft {
    background-image: url('../logo-microsoft.svg');
}
.external-provider.Google {
    background-image: url('../logo-google.svg');
}
.signin-separator {
    color: #003160;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    margin: 10px 0;
}
.signin-separator::before, .signin-separator::after{
    content: "";
    border-top: 1px solid #d8d8d8;
    position: absolute;
    width: 15%;
    top: 50%;
}
.signin-separator::before {
    left: 0;
}
.signin-separator::after{
    right: 0;
}
.form-field {
    display: flex;
    justify-content: stretch;
    flex-direction: column;
}
input, input:focus-visible {
    border: 1px solid #e0e0e0;
    outline: none;
    border-radius: 2px;
    margin: 4px 0;
    font-size: 12px;
    font-weight: 300;
    padding: 8px;
}
:-moz-placeholder {
    color: #acacac;
    font-size: 12px;
}
.forgot-password {
    color: #446bf9;
    text-decoration: none;
    font-size: 14px;
    text-align: right;
}
button {
    border: none;
    color: #fff;
    background-color: #446bf9;
    padding: 8px;
    margin: 20px 0 0 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to bottom, #6284ff, #446bf9);
    box-sizing: border-box;
    width: 100%;
}
button:disabled {
    background-color: #e0e0e0;
    background-image:none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0);
}
button.cancel {
    background-color: #fff;
    color: #446bf9;
    background-image:none;
    box-shadow: none;
}
.error {
    color: #ce201f;
}