.login-form {
    width: 408px;
    padding: 24px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue',
        Arial;
}

.login-form label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #2e2f42;
    display: block;
    margin-bottom: 14px;
}

.login-form input[type='email'],
.login-form input[type='password'] {
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px 12px;
    margin-top: 8px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    outline: none;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.login-form input:focus {
    border-color: #808080;
}

.login-form button[type='submit'] {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #fff;
    background: #4e75ff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.login-form button[type='submit']:hover {
    background: #6c8cff;
}