.main-container {
    height: 100vh;
    width: 100%;
}

.hero {

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.is-purple {
    background-color: #141414;
}

@media screen and (min-width: 768px) {
    .card-custom-height {
        height: 250px;
    }
}

@media screen and (min-width: 1024px) {
    .card-custom-height {
        height: 350px;
    }
}

.card-content {
    display: grid;
    grid-template-columns: 1fr;
}

.card-content {
    margin: 0;
    height: auto;
    display: flex;
}

.form-register {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
    padding: 20px;
    border-radius: 10px;
    height: auto;
    width: 80%;
    margin-bottom: 65px;
}

.form-register .input {
    width: 100%;
    /* Aumenta a largura dos inputs para 100% do contêiner */
}

@media (min-width: 1024px) {
    .is-purple {
        background-color: #141414;
        height: 100vh;
    }
}

@media (max-width: 769px) {
    .card-content {
        display: flex;
        flex-direction: column;
    }

    .form-register {
        display: flex;
        flex-direction: column;
        width: 80%;
        height: auto;
    }

    .field {
        height: auto;
    }
}

.button-container {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.button-container button {
    width: 30%;
    border: none;
    transition: all 1s;
    font-weight: 600;
}

.button-container button:hover {
    background-color: #ffffff !important;
    color: #141414 !important;
    border: none;
}

.field {
    height: 50%;
    margin: 10px 10px 0 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.control:not(.deny) {
    width: 80%;
}

.control.deny {
    width: 60%;
}