* {
    font-family: PT Serif, serif;
    font-weight: 200;
    box-sizing: border-box;
    font-size: 15px;
}

body {
    background-image: linear-gradient(to bottom, #f1f1f1, rgb(199 199 199));
    background-attachment: fixed;
    min-height: 100vh;
}

body > content {
    position: relative;
    top: 0;
    left: 0;
    padding: 40px;
    margin: 40px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 12px;
    background: white;
}

.asteriskField {
    color: red;
    padding-left: .25rem;
    font-weight: 200;
}

.form-text {
    font-size: 13px;
    border-radius: .25rem;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    padding: .5rem;
    margin-top: .75em;
    color: var(--bs-body-color);
}

/* Other */

#loader {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100vw;
    height: 100vh;
    vertical-align: middle;
    padding-top: 45vh;
    z-index: 99999;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}