@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    width: 100%;
    height: 96vh;
}

#container {
    width: 100%;
    height: auto;
    padding-top: 0;
    padding: 30px;
    background-color: white;
}

#active-container {
    display: block;
}

#ilustrator-show {
    padding: 0px;
    width: 100%;
    display: block;
    margin-top: 0;     
    margin-bottom: 10px; 
    object-fit: cover; 
}

#ilustrator-hidden {
    display: none;
}

header > h1 {
    margin-bottom: 20px;
    color: hsl(234, 29%, 20%);
    font-weight: 700;
    font-size: 2.5rem;
}

header > p {
    color: hsl(235, 18%, 26%);
    font-size: 1em;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 20px;
}

.informations {
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 20px;
}

.informations > img {
    height: 25px;
    margin-right: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    color: hsl(235, 18%, 26%);
    font-weight: 500;
    margin-bottom: 20px;
    gap: 12px;
}

label {
    color: hsl(234, 29%, 20%);
    font-weight: 700;
}

#email {
    width: 100%;
    border-width: 1px;
    border-color: hsla(0, 0%, 58%, 0.411);
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 30px;
    color: hsl(234, 29%, 20%);
    font-weight: 500;
    font-size: 1em;
}


button {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 10px;
    color: hsl(0, 0%, 100%);
    background-color: hsl(234, 29%, 20%);
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 40px;
}

button:hover {
    cursor: pointer;
    background: linear-gradient(to right, hsl(345, 100%, 60%), hsl(4, 100%, 70%));
}

.body-classudo {
    background-color: hsl(234, 29%, 20%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-classudo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    border-radius: 30px;
}
    
#thanks-section {
    padding: 10px;
    display: none;
}

#thanks-section > h1 {
    color: hsl(234, 29%, 20%);
    font-size: 3em;
    margin-bottom: 20px;
    margin-top: 20px;
}

#thanks-section > p {
    color: hsl(235, 18%, 26%);
    line-height: 25px;
    margin-bottom: 40px;
}

.input-error {
    border-color: red !important;
    background-color: #ffeaea !important;
}

.input-success {
    border-color: green !important;
    background-color: #eaffea !important;
}


