@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

:root {
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

body {
    background-color: #27689d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Lato', sans-serif;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color:#27689d;
}
* {
    font-family: sans-serif;
    box-sizing: border-box;
}
form {
    width:  375px; 
    background: transparent;
    border: 1px solid #27689d;
    display:block;
    
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

input {
    border: none;
    outline: none;
    border: 1px solid #dedede;
    border-radius: 2px;
    display: block;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}
label {
    display: inline-block;
    margin: 10px 0;
    color: white;
    background: transparent;
}


button {
     /* display: block; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: black;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    font-size: 18px;
    margin-top: 5px; 
    /* margin-left needed for display block */
    padding-top: 8px; /* padding-left for display block */
    padding-bottom: 8px; /* padding-right for display block */
}
button:hover {
    /* opacity: .7; */
    border-color:#9c88ff;
    color: #9c88ff;
}

.back-login {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

a {
    font-size: 14px;
    color:whitesmoke;
}
a:hover{
    color: #9c88ff;   
}
.error {
    background: #F2DEDE;
    color: #A94442;
    padding:  10px;
    width: 95%;
    border-radius: 5px;
    margin: 20px auto;
}

