@font-face {
    font-family: 'Roboto';
    src: url('static/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 100%;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: url('static/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 100%;
    font-style: italic;
  }
  
  * {
    font-family: 'Roboto', sans-serif;
  }
  
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    form {
        background-color: rgb(250, 249, 249);
        border: 1px solid rgb(212, 211, 211);
        border-radius: 15px;
        padding: 20px;
        display:flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 300px;
    }
}
#field {
    margin: 10px;
    width: 80%;
    height: 30px;
    border-radius: 5px;
    border: 1px solid grey;
}
#login {
    margin: 5px 0px 10px 0px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: black;
    color: white;
}
#login:hover {
    background-color: rgb(60, 60, 60);
}
