*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all ease-in-out 0.2s;
}

section{
    margin: 0;
    padding: 2rem 1.5rem;
}

p{
    color: var(--neutral-color-700);
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 300;
    text-align: justify;
}

.page-title {
    position: relative;
    padding: 2rem 0;
    text-align: center;
    margin: 0;
}

.page-title h1 {
    font-size: var(--font-size-headline-h1);
    color: var(--primary-color-500);
    font-weight: 800;
}

.page-title__description{
    display: block;
    margin-top: 0.75rem;
}

.page-title img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section .section-label{
    font-size: 0.75rem;
}

.container{
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.title-md{
    font-size: 1.125rem;
    color:var(--primary-color-500);
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-lg{
    font-size: 1.25rem;
    color:var(--primary-color-500);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-xl{
    font-size: 1.5rem;
    color:var(--primary-color-500);
    font-weight: 700;
}

.list{
    list-style: none;
    padding-right: 0.75rem;    
}

.list li{
    position: relative;
    font-size: 0.875rem;
    line-height: 140%;
    text-align: justify;
    margin-bottom: 0.75rem;
}

.list li:before{
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 0.25rem;
    background-color: #268DFB;
    position: absolute;
    right: -1.25rem;
    top: 0.25rem;
}


/* ===============================
   Grid System (Form Layout)
================================= */

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.align-items-center{
    align-items: center;
}

@media (min-width: 48rem) { /* 768px */
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 62rem) { /* 992px */
    .form-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Full width modifier */
.form-field--full {
    grid-column: 1 / -1;
}

/* ===============================
   Form Field Component
================================= */

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field__label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.form-field--required .form-field__label::after {
    content: " *";
    color: #e53935;
}

/* ===============================
   Controls
================================= */

.form-field__control {
    width: 100%;
    font-family: inherit;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    border: 0.0625rem solid #e0e0e0;
    background: #fefefe;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.form-field__control:focus {
    border-color: #1976d2;
    background: #ffffff;
}

.form-field__control__input-left-align {
    direction: ltr;
    text-align: left;
}

/* Textarea */
.form-field__control--textarea {
    min-height: 6rem;
    resize: vertical;
}

/* Select */
.form-field__control--select {
    appearance: none;
    background-image: none;
}

/* File */
.form-field__control--file {
    padding: 0.5rem;
    background: #f5f6f8;
    display: none;
}

@media (min-width: 960px){
    section{
        padding: 4rem 0;
    }
    
    p{
        font-size: 1rem;
    }
    
    .list li{
        font-size: 1rem;
    }
    
    .page-title {
    padding: 4rem 0;
    }
    
    section .section-label{
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 75rem;
    }
    
    .title-md{
        font-size: 1.5rem;
    }
    
    .title-lg {
        font-size: 2.125rem;
    }
    
    .title-xl{
        font-size: 2.375rem;
    }
}