* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.login-form__inside {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    padding: 0 50px;
}

.login-form label {
    cursor: pointer;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 10px;
    border: 1px solid #cccccc;
}

.login-form button {
    height: 40px;
    border-radius: 10px;
    border: 0;
    font-size: 16px;
    color: #ffffff;
    background-color: #5368d5;
    cursor: pointer;
}

.login-form button:hover {
    opacity: 0.8;
}