/* -------------CUSTOM PROPERTIES------------- */
:root {
    --font: 'Roboto', sans-serif;
    --first-color: #af4d98;
    --second-color: #d66ba0;
    --third-color: #e5a9a9;
    --text-color: #f4e4ba;
    --white-color: white;
    --light-gray-color: lightgray;
    --header-height: 5rem;
}


/* -------------RESET------------- */

html{
    box-sizing: border-box;
    font-family: var(--font);
    font-size: 18px;
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: inherit;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: var(--third-color);
    color: var(--white-color)
}

h1 {
    margin: 0;
    font-size: 2rem;
}

h2 {
    margin: 0;
    font-size: 1.5rem;
}

h3 {
    margin: 0;
    font-size: 1.25rem;
}

h4 {
    margin: 0;
    font-size: 1rem;
}

h5 {
    margin: 0;
    font-size: 0.85rem;
}

h6 {
    margin: 0;
    font-size: 0.7rem;
}

/* -------------COMPONENTS------------- */


/* -------------UTILITIES------------- */

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

.text-justify {
    text-align: justify;
}

.text-bold {
    font-weight: bold;
}

.card {
    margin: 1rem auto;
    padding: 1rem;
    background-color: var(--first-color);
}


/* -------------SITE STYLES------------- */

.titulo {
    margin: 2rem auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group > label {
    margin-left: 2rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group input[type="submit"],
.form-group select,
.form-group textarea,
#radio-group-1,
#checkbox-group {
    padding: 7px;
    margin: 1rem 2rem;
}

input[type="radio"],
input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

#radio-group-1,
#checkbox-group {
    display: flex;
    flex-direction: column;
}

#survey-form {
    margin: 1rem 3rem;
    display: grid;
    
}

@media screen and (min-width: 768px){
    #survey-form {
        margin: 1rem 10rem;
    }          
}

@media screen and (min-width: 1024px) {
    #survey-form {
        margin: 1rem 15rem;
    }
}