body {
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.main-content {
    flex: 1;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.content-wrapper {
    padding: 40px;
    max-width: 100%;
    box-sizing: border-box;
    height: 100vh;
    overflow-y: scroll;
}

.heading-main {
    font-weight: bold;
    font-size: 36px;
    text-align: center;
}

.text-primary-color {
    color: #00bcd4;
}

.text-secondary-color {
    color: #0494cc;
}

.form-input-common {
    background-color: #f7f9fb;
    border-radius: 8px;
    border: 1px solid #eff3f6;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.form-input-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-input-common:focus,
.form-input-common:active,
.form-input-common:focus-visible {
    border-color: #00bcd4;
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: start;
}

.form-check input,
.form-check input:hover,
.form-check input:focus,
.form-check input:active,
.form-check input:focus-visible {
    padding: 8px;
    margin-top: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #00bcd4;
    border-color: #00bcd4;
}

/* Buttons */
.btn-primary-common,
.btn-primary-common:hover,
.btn-primary-common:hover:focus,
.btn-primary-common:hover:focus-visible {
    background-color: #00bcd4;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Links */
a.link-primary,
a.link-primary:hover,
a.link-primary:focus,
a.link-primary:active,
a.link-primary:focus-visible {
    color: #0494cc !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* Layouts */
.full-height {
    height: 100vh;
}

.carousel-section-common {
    background-color: #0092ce0d;
    border-radius: 10px;
}

/* Password Toggle */
.password-toggle {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.password-toggle:hover {
    color: #00bcd4;
}
.password-hint {
    font-size: 14px;
    color: grey;
}
.pass-req div {
    color: grey;
    font-size: 14px;
}

/* Carousel Styles */
.carousel-section-common {
    background-color: #0092ce0d;
    border-radius: 10px;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    margin: 1rem 0rem 1rem 0rem;
}

.carousel-item {
    transition: opacity 0.6s ease-in-out !important;
}

.carousel-content {
    text-align: center;
}

.carousel-indicators-custom {
    position: relative !important;
    margin-top: 2rem;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: auto !important;
}
div#digitalBookCarousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.carousel-indicators-custom .indicator-btn {
    width: 9px !important;
    height: 9px !important;
    background-color: #dee2e6 !important;
    border: none !important;
    margin: 0 4px !important;
    padding: 0 !important;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transition: all 0.3s ease !important;
    transform: scale(1) rotate(0deg);
    opacity: 0.7 !important;
    cursor: pointer;
    border-radius: 0 !important;
    text-indent: 0 !important;
}

.carousel-indicators-custom .indicator-btn.active {
    background-color: #0494cc !important;
    transform: scale(1.2) rotate(1deg);
    opacity: 1 !important;
}

.carousel-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.carousel-title {
    font-weight: bold;
    color: #0494cc;
    margin-bottom: 1rem;
}

.carousel-description {
    color: #6c757d;
    margin-bottom: 0;
    height: 60px;
}
/*Terms and Conditions*/
.terms-div h1 {
    font-size: 24px;
    margin-bottom: 0;
}
.terms-div p,
.terms-div li,
.terms-div a {
    color: #4f4f4f;
}
.terms-div li h3,
.terms-div ::marker {
    font-size: 16px;
    font-weight: 600;
}
.terms-div ol {
    padding-left: 15px;
}

@media (max-width: 768px) {
    .heading-main {
        font-size: 1.5rem;
        text-align: center;
    }
}
