body {
    font-family: 'Poppins', sans-serif;
    background-color: #eee;
    height: 100vh;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-modal {
    font-size: 1rem;
}

.card-bg {
    background: #000080;
}

.wrapper {
    max-width: 500px;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 20px 20px 80px rgb(206, 206, 206);
    background-color: #ffffff;
    text-align: center;
}

.h4 {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #400485;
    font-style: italic;
    text-align: center;
}

.input-field {
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #400485;
    color: #400485;
}

.input-field:hover {
    color: #7b4ca0;
    border: 1px solid #7b4ca0;
}

input {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    padding: 0px 2px;
    font-family: 'Poppins', sans-serif;
}

.btn.btn-block {
    border-radius: 20px;
    background-color: #400485;
    color: #fff;
}

.btn.btn-block:hover {
    background-color: #55268be0;
}

@media(max-width: 575px) {
    .wrapper {
        margin: 10px;
    }
}

@media(max-width:424px) {
    .wrapper {
        padding: 40px 20px;
        margin: 20px;
    }

    .h4 {
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 2rem;
        font-weight: bold;
        color: #400485;
        font-style: italic;
        text-align: center;
        margin-top: 10px;
    }

    .option {
        position: relative;
        padding-left: 22px;
    }

    .option label.text-muted {
        font-size: 0.95rem;
    }

    .checkmark {
        position: absolute;
        top: 2px;
    }

    .option .checkmark:after {
        top: 50%;
    }

    #forgot {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .texto-modal {
        font-size: 0.9rem;
        /* Texto menor em telas médias */
    }
}

@media (max-width: 576px) {
    .texto-modal {
        font-size: 0.8rem;
        /* Texto ainda menor em telas pequenas */
    }
}

/* Ajuste do tamanho da modal para telas maiores */
@media (min-width: 992px) {
    .modal-md {
        max-width: 500px;
    }
}

