* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Public Sans", sans-serif;
}

.wrapper {
    /*height: 100vh;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: var(--color-light-gray-background);
    display: flex;
    height: 100%;
    width: 100%;
}

.container--white-background {
    background-color: var(--color-white);
}

.container--light-gray-background {
    background-color: var(--color-light-gray-background);
}

.container__side {
    padding: 20px 30px 0;
}

.container__side:last-child {
    padding: 20px 30px 0;
}

.container__side:first-child {
    padding: 0 30px 20px;
}

.button {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button--primary {
    font-size: 17px;
    margin-top: 20px;
    background: #0e0e0e;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
}

.button--primary:hover {
    background: #303030;
}

.button--secondary {
    margin: 0 auto;
    display: flex;
    background: transparent;
    color: var(--color-white);
    border: 1px solid white;
    padding: 10px 40px;
    border-radius: 5px;
}

.button--secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.icon--left {
    margin-right: 4px;
}

.icon--right {
    margin-left: 4px;
}

@media (min-width: 992px) {
    .wrapper {
        min-height: 100vh;
    }

    .container__side {
        padding: 0 !important;
        width: 100%;
    }
}
