/* Benefits Slider Styles */
.benefits-slider {
    flex: 1;
    width: 40vw;
    height: 100vh;
    background-color: var(--dark-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    visibility: hidden;
}

.carousel-item.active {
    visibility: visible;
    align-items: center;
    justify-content: center;
    display: flex;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 80%;
    margin: 0 auto;
}

.benefit-illustration {
    margin-bottom: 2rem;
    max-width: 300px;
    height: auto;
}

.benefit-illustration img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.benefit-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.benefit-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: white;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
}

.benefit-text .btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .containers {
        flex-direction: column;
    }

    .carousel-indicators {
        bottom: -5px;
    }

    .benefits-slider {
        width: 100%;
    }

    .benefit-text .btn {
        display: block;
    }
}

form {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
    margin-top: 70px;
    min-width: 280px;
}

.form-control:focus,
.form-check-input:focus {
    border-color: inherit;
    box-shadow: none;
}

.form-floating>.form-control:focus~label {
    transform: scale(.85) translateY(-30px) translateX(.15rem);
    opacity: 1;
}

input[type=checkbox]~label {
    user-select: none;
}

.input-icon {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-icon i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9A9A9A;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.form-control:focus {
    border-color: var(--primary-green);
}

.form-floating>.form-control:focus~label {
    color: var(--primary-green);
}