/*@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");*/

html,
body {
    height: 100%;
}

a {
    text-decoration: none;
}

.form-signin {
    max-width: 330px;
    padding: 1rem;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="idcard"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="phone"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.testimonial-card {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    text-align: center;
    margin-top: 20px;
}

.testimonial-author img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.bd-mode-toggle {
    z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}

.image-hover {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-hover img {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.image-hover:hover img {
    transform: scale(1.5);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-hover:hover .overlay {
    opacity: 1;
}

.featurette-divider {
    margin: 2rem 0;
}

.featurette-heading {
    letter-spacing: -.05rem;
}