body {
    font-family: "Poppins", sans-serif;
    background: #e7e9ed;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #535b61;
}

a {
    color:#7367F0;
}

.product-info h2 {
    opacity:0.7;
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.step.active {
    background-color: #7367F0;
    color: #ffffff;
}
.step:not(.active) {
    opacity: 0.3;
    font-weight: 700;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
}

.form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    margin-bottom:20px;
}

.form-step {
    display: none;
}

.form-step[data-step="1"] {
    display: block;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    background-color: #7367F0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555abf;
}
.form-step {
    display: none;
}

/* Product Info Styling */
.product-info {
    padding: 20px;
}

.product-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 16px;
}

.step-indicators {
    display: flex;
    align-items: center;
}

.step-line {
    -ms-flex: 1 0 32px;
    flex: 1 0 32px;
    min-width: 1px;
    min-height: 1px;
    margin: auto;
    background-color: rgba(0,0,0,.12);
}
.select {
    display: block;
    width: 100%; /* Responsive width */
    height: 40px; /* Fixed height */
    padding: 10px 15px; /* Some padding */
    font-size: 16px; /* Text size */
    line-height: 1.5;
    border: 1px solid #ccc; /* A subtle border */
    border-radius: 5px; /* Rounded corners */
    background-color: white; /* White background */
    box-shadow: inset 0 1px 2px rgba(0,0,0,.075); /* Inner shadow for depth */
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; /* Transition for interactions */
}

.select:focus {
    border-color: #7367F0;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.075), 0 0 5px rgba(128, 189, 255, .5); /* More focus on shadow */
}

.select:hover {
    border-color: #7367F0; /* Slightly darker border on hover */
}

/* You may want to style the option elements as well */
.select option {
    padding: 0 2px; /* Option padding */
}
@media (max-width: 999px) {
    .step-indicators {
        display: block !important;
        text-align: left !important;
    }
    .step-line {
        display:none;
    }
}
