.content {
    background-color: #202020;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-media {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    margin: 0 auto;
}

.center-content {
    background-color: #fefefe;
    height:100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    gap: 40px;
    margin-bottom: 30px;
}


.btn-login {
    background-color: #f7d935;
    text-transform: uppercase;
    font-weight: 700;
    width: 40%;
    margin: 0 auto;
    margin-top: 30px;
    padding: 15px;
    transition: 0.8s ease-in-out;
}

.btn-login:hover {
    background-color: #202020;
    color: white;
    transition: 0.8s ease-in-out;
}

.sec-shield {
    width: 30%;
    margin: 0 auto;
}

.text-message {
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    font-size: 25px;
}

.info-text {
    text-transform: uppercase;
    font-weight: 500;
    color: #CACACA;
    margin-top: 15px;
}

.input-code {
    border: 1px solid;
}

.input-group .form-control::placeholder {
    color: #E8E8E8 !important;
    font-size: 50px;
    opacity: 1;
    text-align: center;
    line-height: 80px; /* Deve ser igual à altura do input */
    font-weight: 600;
}

.input-group .form-control {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px; /* Ajuste conforme necessário */
    font-size: 50px; /* Ajuste conforme necessário */
}

.question {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}


@media screen and (max-width: 390px) {
    .center-media {
        width: 90%;
    }

    .center-content {
        width: 100%;
        gap: 20px;
    }

    .btn-login {
        width: 80%;
    }

    .text-message {
        font-size: 20px;
    }

    .question {
        font-size: 24px;
    }

    .input-group .form-control {
        height: 60px;
        font-size: 40px;
        line-height: 60px;
    }

    .input-group .form-control::placeholder {
        font-size: 40px;
        line-height: 60px;
    }

    .sec-shield {
        width: 50%;
    }
}
