;

:root {
    --color-black: #1F2024;
    --color-gray: #4B4952;
    --color-green: #004F4D;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    margin: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: #1F2024;
    background-image: linear-gradient(115deg,
            #4b495285,
            #004f4ce3),
        url(https://mundocalistenico.com/wp-content/uploads/2018/04/1518202047_462304_1518202190_noticia_normal.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

h1 {
    font-weight: 800;
    line-height: 1.5;
}

p {
    font-size: 1.25rem;
}

h3 {
    font-size: 1rem;
}

h1,
p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h1,
h2 {
    text-align: center;
}

label {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

input,
button,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    border: none;
}

.form-group {
    width: 100%;
    margin: 3.125rem auto 0 auto;
}

@media (min-width: 576px) {
    .form-group {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .form-group {
        max-width: 850px;
    }
}

form {
    background: #1f2024be;
    padding: 2.8rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.group {
    margin: 0 1rem 1.25rem 1rem;
    padding: 0.25rem;
}

.form-control {
    display: block;
    width: 100%;
    height: 2.375rem;
    padding: 0.375rem 1rem;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.radio,
.checkbox {
    display: inline-block;
    margin-right: 0.625rem;
    min-height: 1.25rem;
    min-width: 1.25rem;
}

.textarea {
    min-height: 120px;
    width: 100%;
    padding: 0.625rem;
    resize: vertical;
}

.button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #004F4D;
    color: inherit;
    border-radius: 2px;
    cursor: pointer;
}

#description {
    text-align: center;
}