.mainContent {
    width: 100%;
}

.hero {
    height: 100vh;
    background-color: rgb(27, 27, 27);
    background-image: url("../../images/quienesSomoos-pC-full.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}

.heroContentContainer {
    width: 92%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 30px;
    padding-top: 80px;
    align-items: center;
}

.heroTitle {
    font-family: "Oswald";
    font-weight: normal;
    font-size: 48px;
    color: white;
    margin-bottom: 63px;
    user-select: none;
}

.emailInput {
    width: 30%;
    display: flex;
    flex-direction: column;
    column-gap: 10px;
}

input {
    width: 100%;
    padding: 12px 10px;
    text-align: center;
    background-color: #000000;
    border: 2px solid #29C8FF;
    border-radius: 16px;
    color: #29C8FF;
    outline: none;
}

.sendButton {
    width: max-content;
    display: flex;
    border-radius: 11px;
    color: #FFFFFF;
    padding: 8px 18px;
    font-size: 18px;
    margin: auto;
    margin-top: auto;
    margin-top: 35px;
    cursor: pointer;
    background-color: #29C8FF;
    border: none;
    user-select: none;
}

.sendButton:hover {
    background-color: #00a6ff;
    scale: 1.02;
}

.codeSection {
    display: none;
    width: 30%;
    flex-direction: column;
    column-gap: 10px;
}

.codeInputs {
    width:90%;
    display: flex;
    gap: 12px;
    margin: auto;
}

.passwordSection {
    display: none;
    width: 30%;
    flex-direction: column;
    column-gap: 10px;
}

.passwordInputContainer {
    position: relative;
    width: 100%;
    text-align: center;
    background-color: #000000;
    border: 2px solid #29C8FF;
    border-radius: 16px;
    color: #29C8FF;
    outline: none;
}

.passwordInputContainer input {
    width: calc(100% - 85px);
    background-color: transparent;
    border: none;
    color: #29C8FF;
    outline: none;
    text-align: center;
}

.passwordInputContainer img {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 32px;
    cursor: pointer;
    user-select: none;
}

.passwordSection span {
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 2px;
    margin-bottom: 20px;
}

@media (max-width: 1023px) {
    .heroTitle {
        text-align: center;
        font-size: 10vw;
    }

    .emailInput {
        width: 75%;
    }

    .codeSection {
        width: 75%;
    }

    .passwordSection {
        width: 75%;
    }
}