/****************************
Hero
****************************/

#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    text-align: center;
}

#heroTitle {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

#heroSubtitle {
    font-size: 18px;
    color: var(--disabled);
    max-width: 450px;
    margin-bottom: 40px;
    line-height: 1.6;
}

#heroForm {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

#heroForm.active {
    display: flex;
}

#heroForm .formInput {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 16px;
}

#heroConfirmation {
    display: none;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 20px;
}

#heroConfirmation.active {
    display: block;
}

@media (max-width: 800px) {
    #heroTitle {
        font-size: 36px;
    }
}
