html{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}
body {
    margin: 0;
    padding: 0;
    min-width: 100%;
    min-height:100%;
    font-family: Inter;
    font-weight: 300;       
    color:rgb(22, 22, 55);
    background:rgb(213, 243, 255);
    cursor:default;
}
input, button{
    font-family: inherit;
    font-size:inherit;
    border: 1px solid #dce3eb;
    border-radius: 3px;
    box-sizing: border-box;
    color:inherit;
    filter: none;
}
input[type=password]{
    font-family:Arial;
    line-height:1.25em;
}
input[disabled=true]{
    background: white;
    color: lightgray;
}
input[type=text].pop{
    color:inherit;
}
input::placeholder, input[type=password]::placeholder{
    font-family:Inter;
    color:#7997b9;
}
h1{
    font-size: 200%;
    line-height: 1em;
    margin-top: 0;
    text-align: center;
}
a:link, a:visited, input[type=submit], button{
    color:#2c2c96;
    background:none;
    border:none;
    cursor:pointer;
    transition: all 0.1s;
    text-decoration:none;
    font-weight:400;
}
a:hover, input[type=submit]:hover, button:hover{
    position:relative;
    color: #22d;
}