body {
    background-color: #ffffff;
    font-family: sans-serif;
    font-size: 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: sans-serif;
    margin: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1em;
    font-weight: light;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 30px;
}

h4 {
    font-size: 0.8em;
    font-weight: light;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 8px;
    margin-bottom: 8px;
}


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


/***** DEFAULT FORM LABEL *****/

label {
    display: block;
    font-size: 1em;
    font-weight: bold;
    margin-top: 12px;
}






/***** DEFAULT INPUT FORM *****/

input[type="text"] {
    padding: 12px;
    width: 100%;
    background-color: #F5F5F5;
    border: 2px solid #F5F5F5;
    outline: none;
    transition: border 0.3s;
}

input[type="text"]::placeholder {
    color: #c8c8c8;
}

input[type="text"]:focus {
    border: 2px solid #000000;
}

/***** INACTIVE INPUT FORM *****/

input[type="text"]:read-only {
    padding: 6px 0;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #858585;
    outline: none;
    transition: border 0.3s;
}




/***** TEXT AREA *****/

textarea {
    background-color: #F5F5F5;
    border: 2px solid #F5F5F5;
    width: 100%;
    padding: 12px;
    overflow: hidden;
    height: 140px;
    resize: none;
    font-family: sans-serif;
    transition: border 0.3s;
    outline: none;

}

textarea:focus {
    border: 2px solid #000000;

}

textarea:read-only {
    height: max-content;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
    outline: none;
    transition: border 0.3s;
    padding: 12px 0;

}



/***** SELECT FORM ELEMENT *****/
select {
    padding: 12px;
    width: calc(100% + 30px);
    background-color: #F5F5F5;
    border: 2px solid #F5F5F5;
    outline: none;
    transition: border 0.3s;
}



/***** BUTTONS *****/

button {
    padding: 12px 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
}


