@font-face {
    font-family: "CircularStd Book";
    src: url(/fonts/CircularStd-Book.ttf);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CircularStd Medium";
    src: url(/fonts/CircularStd-Medium.ttf);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CircularStd Black";
    src: url(/fonts/CircularStd-Black.ttf);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "CircularStd Bold";
    src: url(/fonts/CircularStd-Bold.ttf);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "CircularStd Book", sans-serif;
}

.flex-box {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.flex-box .left,
.flex-box .right {
    width: 50%;
}

.flex-box .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.left .card {
    width: 100%;
    max-width: 500px;
    margin: 1em 0;
    padding: 1em;
    box-shadow: 0px 4px 20px -2px rgba(0, 0, 0, 0.3);
    border: none;
}

.flex-box h1 {
    font-family: "CircularStd Black";
}

button.btn.btn-primary {
    background: #2a2d34;
    border: none;
    width: 100%;
    margin: 1em 0;
    padding: 1em 0;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: -2px 3px 0px 1px rgba(0, 0, 0, 0.5);
}

.flex-box .right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
}

label,
p {
    color: #a7a7a7;
}

a,
.btn.btn-link {
    color: #2a2d34 !important;
    text-decoration: underline;
}

input.form-control {
    background: #f5f6f7 !important;
    box-shadow: none !important;
    border: 1px solid #dedede !important;
}

.alert {
    border-radius: 30px;
}

@media (max-width: 768px) {
    .flex-box {
        flex-direction: column;
    }

    .flex-box .left {
        width: 100%;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .flex-box .right {
        display: none;
    }
}

.logo {
    width: 180px;
    margin-bottom: 2em;
}

@media (max-width: 768px) {
    .logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}