body {
    font-family: 'Inter', sans-serif;
}

.bg-gradient {
    background-color: #6D1A86;
}

.bg-purple {
    background-color: #6D1A86;
}

/* Purple Border */
.border-purple {
    border: 1px solid purple !important;
}

/* Purple Text */
.text-purple {
    color: purple !important;
}

/* Purple Outline Button */
.btn-outline-purple {
    border-color: purple !important;
    color: purple !important;
}

.btn-outline-purple:hover {
    background-color: #6D1A86;
    color: white;
}

.curve-radius {
    background: white;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 2px solid 2px rgba(0, 0, 0, 0.1);
}

.curve-radius-left {
    background: white;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    box-shadow: 2px solid 2px rgba(0, 0, 0, 0.1);
}

.button-groups button {
    background-color: #FFEEFD;
    padding: 15px;
    border-radius: 30px;
    color: #6D1A86;
}

.button-groups button:hover {
    color: white;
    background-color: #6D1A86;
}

.floating-img {
    position: absolute;
    bottom: 0;
    right: 9%;
    width: 675px;
    height: 641px;
    z-index: 1;

}

.floating-img-left {
    position: absolute;
    top: 60%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 612px;
    height: 612px;
    z-index: 1;

}

.bg-purple-right {
    background-color: #6D1A86;
}

.line-break {
    display: block;
}

@media screen and (max-width: 768px) {

    .curve-radius,
    .curve-radius-left {
        border-radius: 0px;
    }

    .floating-img {
        bottom: 30vh;


    }

    .line-break {
        display: none;
    }

    .active-plan {

        padding: 10px;


    }

}

@media screen and (max-width: 576px) {

    .floating-img {
        display: none;

    }
}


.hideContent {
    display: none;
}

.showContent {
    display: block;
}

.swiper-slide li {
    padding-bottom: 10px;
}

.choose-plan-btn {
    padding: 15px !important;
}

.active-plan {
    border-radius: 26px;
    padding: 10px;
    box-shadow: 0px 1px 14px 0px #53B9EA;
    background-color: #53B9EA;

}

.active-plan .btn {
    background-color: #6D1A86 !important;
    color: white !important;
}

.active-plan li,
.active-plan p,
.active-plan span {
    color: white !important;
}

.active-plan span {
    font-weight: bold;
    color: white !important;
}

.modal-content {
    border-radius: 12px;
}

.btn-purple {
    background-color: #6B2B91;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
}

.btn-purple:hover {
    background-color: #5a2375;
}

.btn-outline {
    border: 2px solid #ccc;
    color: black;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
}

input {
    border-radius: 8px !important;
}

.checkout-title {
    font-weight: bold;
    font-size: 24px;
}

.checkout-subtitle {
    color: gray;
    font-size: 14px;
}

.form-plan-payment label {
    font-weight: 600;
    font-size: 14px;
}


.register-form input,
.register-form select {
    border-radius: 20px !important;
    padding: 10px;

}

.register-form .custom-checkbox {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}


.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E7E7E7;
    /* Google blue */
    color: black;
    /* White text */
    border: none;
    /* Remove default border */
    padding: 15px 20px;
    /* Add padding for spacing */
    border-radius: 5px;
    /* Rounded corners */
    width: 100%;
    /* Make the button full width */
    cursor: pointer;
    /* Pointer cursor on hover */
    font-weight: bold;
    border-radius: 30px;

    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effects */
}

/* Google icon styling */
.google-icon {
    width: 20px;
    /* Adjust the icon size */
    height: 20px;
    margin-right: 10px;
    /* Space between icon and text */
}

/* Hover effect */
.btn-google:hover {
    color: white;
    background-color: #6B2B91;
}

/* Focus effect for accessibility */
.btn-google:focus {
    outline: none;
    /* Remove the default focus outline */
    box-shadow: 0 0 5px 2px rgba(0, 123, 255, 0.5);
    /* Add custom focus shadow */
}

.password-container {
    position: relative;
}

/* Style the toggle button */
.password-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 18px;
    /* Increase size of the icon */
}

/* Position the icon on the right side of the input */
.password-toggle svg {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    /* Vertically center the icon */
}