body {
    width: 100%;
    height: calc(100dvh);
    padding: 0;
    margin: 0;
    display: grid;    
    justify-content: center;
    align-items: center;
    align-content: center;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color:#003781;
    font-weight:500;
}
.login {
    background:#003781;
    color:#fff;
    text-decoration:none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 10px;
    line-height: 1.5;
    border:none;
    cursor:pointer;
}
h1 {
    display:flex;
    justify-content:center;
}
input {
     padding: 8px 12px;
    font-size: 14px;
    border-radius: 10px;
    background:transparent;
    border:1px solid #003781;
    color:#003781;
}
input:focus{
    outline: none;
  border-color: none;
    
}
form {
    display:flex;
    justify-content:center;
    gap:8px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
    padding:20px;
}