@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&display=swap');
.form {
    padding: 40px 48px;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 50%), 0 5px 5px 0 rgb(0 0 0 / 70%);
}

.form button {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: #092E66;
}

.form input {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 4px;
}

.login-page h1 {
    text-transform: uppercase;
    color: #092E66;
    font-family: 'Inter', sans-serif;
    font-size: 55px;
    letter-spacing: 0px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 900;
}

.form button:hover,
.form button:active,
.form button:focus {
    background: #031125;
}