body {
    font-family: 'Archivo', sans-serif;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
}

.container {
    background: #fff;
    border-radius: 10px;
    width: 436px;
    text-align: center;
    overflow: auto;
    display: flex;
    justify-content: space-between;
    margin: 0 0;
    flex-direction: column;
    position: relative;
}

.logo {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 8px;
    right: 12px;
}

.questions {
    color: #434343;
    opacity: 80%;
    font-size: 15px;
    margin-bottom: 0 7px 0 0;
}

.eligibilityLabel {
    color: #696969;
}

input[type=range] {
    width: 346px;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: 5px;
    outline: none;
}

/* Barre de progression avant et après le curseur (WebKit: Chrome, Safari, Edge) */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: linear-gradient(to right, #e68900 var(--progress), #ddd var(--progress));
}

/* Curseur du slider (WebKit) */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #EE8933;
    cursor: pointer;
    margin-top: -4px;
    position: relative;
}

/* Barre pour Firefox */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background: #ddd;
}

/* Partie remplie avant le curseur pour Firefox */
input[type=range]::-moz-range-progress {
    background: #e68900;
    height: 6px;
    border-radius: 5px;
}

/* Curseur pour Firefox */
input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #EE8933;
    cursor: pointer;
    border: none;
}


.amount {
    font-size: 22px;
    font-weight: 500;
    margin: 0 12px 0 0;
}

.eligibility {
    font-size: 35px;
    color: #e91e63;
    font-weight: 400;
    margin: 0 0 0 0;
}

.email-input {
    width: 345px;
    height: 40px;
    border: 0.3px solid #03010A;
    border-radius: 6px;
    margin-bottom: 10px;
    margin-top: 24px;
    text-indent: 10px;
    padding: 0;
    align-self: center;

}

.apply-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px;
    width: 345px;
    height: 40px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    flex: content;
    align-self: center;
    margin-bottom: 13px;
}

.apply-btn:hover {
    background: #e68900;
}