/* Chrome, Safari, Edge */
input:-webkit-autofill {
    color: #efe6dd !important;
}

/* Chrome, Safari, Edge */
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #efe6dd !important; /* force white text */
        transition: background-color 5000s ease-in-out 0s; /* prevent yellow flash */
    }

/* Firefox */
input:-moz-autofill {
    -moz-text-fill-color: #efe6dd !important;
}

main {
    background-color: #231F20;
}

input::placeholder {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.contentContainer {
    max-width:400px;
}

.mainContainer {
    max-height: 100vh;
}

.color-linen {
    color: #efe6dd;
}

.title {
    font-size: 3.5rem;
    line-height: 63px;
    color: #ef5734; /*#BB4430*/
}

.outfit-700 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.outfit-400 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.outfit-600 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}


#email {
    height: inherit;
    background-color: #2f2c2c;
    outline: none;
    border: none;
    border-radius: 4px;
    color: white;
}

.input-text-container {
    height: 50px;
    background-color: #2f2c2c;
    outline: none;
    border: none;
    border-radius: 4px;
    color: #efe6dd !important;
    padding-left: 1rem;
}

button {
    outline: none;
    border: none;
    background: transparent;
    background-color: #efe6dd;
    color: #231F20;
    font-weight: 600;
    width: 100%;
    height: 50px;
    border-radius: 3px;
}


@media(max-width:500px) {
    .contentContainer {
        max-width: 300px;
    }

    .title {
        font-size: 2.8rem;
        line-height: 53px;
        color: #BB4430;
    }
    .mainContainer {
        align-items: start !important;
        padding: 2.7rem 1rem;
    }
}