* {
    box-sizing: border-box;
}

html body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100vh;
    padding-top: 0;
}

h1 {
    text-align: center;
}

#left-side {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex: 384px 1 1;
}

#right-side {
    background-color: var(--primary-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex: 384px 1 1;
}

#logo-container {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
}

form {
    width: 100%;
    text-align: center;
    max-width: 320px;
}

form input {
    text-align: center;
}