html {
    font-size: 14px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #F3F4F6;
    font-family: 'Roboto', sans-serif;
}

    body.has-header {
        margin-top: 0;
        margin-bottom: 1rem;
    }

main {
    display: flex;
    min-width: 0;
}

.layout-main-container {
    display: flex;
    flex-direction: column;
}

.navbar {
    height: 50px;
    padding: 0 20px;
}

.white-box {
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(48,52,63,.08);
    color: #9498a3;
    max-width: 100vw;
    max-height: 100vh;
    overflow-y: auto;
    width: fit-content;
}

h1, h2, h3, h4, h5, h6, h7 {
    color: #595c68;
    font-weight: 300;
    margin-bottom: 20px;
}

.btn {
    font-weight: 400;
    border: 0;
    border-radius: 5px;
    height: 38px;
}

.btn-primary {
    color: #fff;
    background-color: #ff2a1b;
}

.bold {
    font-weight: 600;
}

.error {
    font-size: 16px;
    color: #dc3545;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .white-box {
        padding: 30px 70px;
    }

    .btn {
        height: 50px;
    }
}
