* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Roboto', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-direction: row;
}

.main-box {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form{
    width: 500px;
    border-radius: 5px;
    padding: 20px;
    border: 1px solid rgba(100, 100, 111, 0.2);
}

