.full-screen-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-window {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

@media (max-width: 576px) {
    .modal-window {
        padding: 20px;
    }
}

.input-group .btn-eye {
    border: 1px solid #ced4da !important;   /* mesma borda do input padrão */
    background-color: #fff !important;
    color: #6c757d !important;              /* mesma cor do placeholder do input */
}

.input-group .btn-eye:hover {
    background-color: #e9ecef !important;
}
