﻿/*------------------------------------ 2 ------------------------------*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #eaf6ff, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.onboarding-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    display: none;
    height: 250px;
}

.gradient-border-box {
    position: relative;
    border-radius: 20px;
    padding: 30px;
    width: 968px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 250px;
    display: none;
    z-index: 0;
}

    .gradient-border-box::before {
        content: '';
        position: absolute;
        inset: 0;
        padding: 2px;
        border-radius: 20px;
        background: linear-gradient(to right, #1DE9B6, #1DC4E9);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

.onboarding-container.active {
    display: block;
}

.step-question {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .input-group input {
        flex-grow: 1;
        padding: 15px;
        border-radius: 50px;
        border: 1px solid #e0e0e0;
        background-color: #f8f8f8;
        font-size: 14px;
    }

    .input-group button {
        background-color: #007bff;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 15px;
    background: #c0c0c0;
    cursor: pointer;
}

    .dot.active {
        background: #007bff;
        width: 25px;
        cursor: default;
    }

.onboarding-step-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, #eaf6ff, #ffffff);
    width: 100vw;
    align-items: center;
}

.onboarding-flex-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.onboarding-input-group {
    position: relative;
    width: 100%;
}

    .onboarding-input-group input {
        width: 100%;
        padding: 15px 140px 15px 20px;
        border-radius: 9999px;
        border: 1px solid #e0e0e0;
        background-color: #f8f8f8;
        font-size: 14px;
    }

    .onboarding-input-group button {
        position: absolute;
        right: 6px;
        top: 5px;
        bottom: 5px;
        padding: 0 20px;
        border: none;
        background-color: #007bff;
        color: white;
        font-weight: bold;
        border-radius: 9999px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

.onboarding-offer-button {
    padding: 20px !important;
    min-width: 150px;
    background-color: #E0F5FFC7 !important;
    color: #333 !important;
    font-weight: bold;
}
