body {
    background: linear-gradient(180deg, var(--navy) -100%, var(--purple) 200%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: white!important;
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;  
}

a {
    text-decoration: none;
}

.container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.landing-content {
    max-width: 450px; 
    padding: 0 20px;
}

.landing-content h1 {
    font-size: 2.8rem; 
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff; 
    line-height: 1;
}

.landing-content p {
    font-size: 1.2rem; 
    color: #e0d8f0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.carousel-container {
    width: 100%;
    max-width: 414px;
    margin: 0 auto;
    position: relative;
}

.owl-carousel {
    width: 100%;
}

.owl-stage-outer,
.owl-item {
    height: 100%;
}

.owl-stage {
    min-height: calc(100vh - 164px);
    height: calc(100vh - 164px);
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-block: 10px;
}

.carousel-item {
    position: relative;
    padding: 40px 20px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70%;
}

.content-image {
    width: 100%;
    text-align: center;
    /* margin-bottom: 40px; */
}

.content-image img {
    max-width: 100%;
    height: auto;
}

.carousel-text {
    text-align: left;
    padding: 0 20px;
}

.carousel-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1;
    color:var(--light);
}

.carousel-description {
    color: #e0d8f0;
    font-size: 1rem;
    text-align: left;
    line-height: 1.4;
}

.challenges-content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.challenges-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.challenge-container {
    width: 100%;
    padding: 0;
}

.challenge-box {
    background-color: white;
    color: black;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
}

.challenge-title {
    color: var(--blue);
    font-weight: bold;
}

.challenge-goal {
    font-size: 0.9rem;
    margin-top: 5px;
}

.progress-bar {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    width: 100%;
    margin-top: 8px;
}

.progress-fill {
    height: 100%;
    background-color: var(--purple);
    border-radius: 5px;
    width: 40%;
}

.goals-header {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 15px 0 10px 0;
    text-align: left;
}

.goal-box {
    background-color: white;
    color: black;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.goal-icon {
    color: var(--blue);;
    margin-right: 5px;
}

.goal-times {
    font-size: 0.9rem;
    margin-top: 3px;
}

.plus-icon {
    font-weight: bold;
    font-size: 1.5rem;
}

.carousel-bottom-text {
    margin-top: 20px;
    text-align: left;
}

.placeholder-centered {
    text-align: left;
    padding: 0 20px;
}

.custom-dots {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-dots li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.custom-dots li.active {
    background-color: white;
}

.login-buttons {
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    height: 120px;
}

.email-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    box-sizing: border-box;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.social-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 12px 0;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    text-align: center;
    box-sizing: border-box;
}

.btn-icon {
    height: 20px;
    width: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

.smaller-image {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.owl-dots {
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0;
}
