@font-face {
    font-family: Aptos;
    src: url('../fonts/Aptos.ttf') format('truetype');
}
body {
    font-family: Aptos, Arial, sans-serif;
    font-size: 1.2rem;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: #FEF3C7;
}
.logo {
    text-align: center;
    margin: 1rem auto;
}
.container {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgb(0,0,0);
}
#divLang {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
#switchLang {
    width: 120px;
    display: inline-block;
}
#titre {
    font-size: 1.8rem;
    font-weight: 600;
}
.redtext {
    color: rgb(188, 9, 45);
}
.bluetext {
    color: #1f3c88;
    font-size: 1.6rem;
    font-weight: 600;
}
fieldset {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 1rem 1.5rem;
    border-radius: 6px;
}
.question {
    margin-bottom: 1rem;
}
.options label {
    display: inline-block;
    margin-right: 1rem;
}
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    width: 100%;
}
.btn-gradient:hover {
    transform: translateY(-6px);
    transition: all 0.3s ease;
}
.btn-gradient:disabled {
    cursor: not-allowed;
}
.error {
    border: 2px solid crimson !important;
    background-color: pink !important;
    padding: .5rem;
    border-radius: 6px;
}
.sticky-progress {
    position: sticky;
    top: .5rem;
    z-index: 1050;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: bold;
}
.progress {
    height: 8px;
    background-color: #ddd;
    margin-bottom: .25rem;
}
.progress-bar {
    border-radius: 8px;
    overflow: hidden;
}
#progressFill {
    height: 100%;
    width: 0%;
    /*background: linear-gradient(90deg, #1f3c88, #4b6cb7);*/
    transition: width 0.3s ease;
}
.bg-gradient {
    background: linear-gradient(90deg, #667eea, #764ba2) !important;
}