/* Main content background */
.main-content.sp1 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}
/* Styles de base */
h2 span
{
	color:#8C6735;
	margin-top: 50px; margin-bottom: 20px;
}
.stepwizard {
    margin: 20px 0;
}

.stepwizard-row {
    display: flex;
    justify-content: space-between;
    gap: 0; /* Attache les étapes */
}

.stepwizard-step {
    text-align: center;
    position: relative;
    flex: 1;
}
.input-group-text {
    color: white;
    background-color: #fff; /* Icon background */
}
.input-group-text i {
    color: #8C6735;
}
.input-group .form-select,
.input-group input {
    border-color: #D4C29D; /* Optional: to match the background with a subtle border */
}

.input-group .form-select:focus,
.input-group input:focus {
    border-color: #8C6735; /* Optional: for focus state */
}

.btn-circle {
    width: 100%;
    height: 40px;
    border-radius: 0;
    font-size: 16px;
    line-height: 40px;
    border: 2px solid #B68F42;
    background-color: #A2845E;
    color: #fff;
    transition: background-color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-one {
    background-color: #8C6735;
}

.btn-two {
    background-color: #00306B;
}

.previous-step {
    color: #555;
}

/* Ombre pour le texte des étapes terminées */
.text-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}
body:not(.ar) .stepwizard-step a span {
    font-size: 12px; /* Taille plus petite pour éviter le dépassement */
	font-weight:bold;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    overflow: hidden; /* Cache le texte dépassant */
    text-overflow: ellipsis; /* Ajoute "..." si le texte dépasse */
}




