@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
}
.container header {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.container header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
    background-color: #007070;
}


.img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
#teleID {
    margin-bottom: 10px;
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    width: 200px !important;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    font-size: smaller;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-right: 36px;
    margin-right: 0;
    max-width: 200px;
    font-size: small;
}
.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 80%;
    padding: 0 6px 0 6px;
}
.invalid-input {
    border: 1px solid red; /* Bordure rouge */
}


.form-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
}

.form-steps {
    padding-bottom: 10px;
}
#ul1 {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;

}
.form-steps li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #536387;
}
#spn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDE3EC;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #536387;
    margin-right: 6px;
}
.form-steps li.active {
    color: #07074D;;
}

.form-steps li.active span {
    background: #007070;
    color: #FFFFFF;
}

.form-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}
.form-input-flex{
    width: 50%;
}
.form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    color: #536387;
    outline: none;
    resize: none;
}
.form-input:focus {
    border-color: #007070;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}
.form-label {
    color: #07074D;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.form-confirm {
    padding-bottom: 35px;
}
.form-confirm p {
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    margin-bottom: 22px;
    width: 75%;
}
.form-confirm > div {
    display: flex;
    gap: 15px;
}

.form-confirm-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 0.5px solid #DDE3EC;
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    color: #007070;
    cursor: pointer;
    padding: 10px 20px;
    transition: all .3s ease-in-out;
}
.form-confirm-btn {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}
.form-confirm-btn.active {
    background: #007070;
    color: #FFFFFF;
}

.form-step-1,
.form-step-2,
.form-step-3,
.form-step-4 {
    display: none;
}
.form-step-1.active,
.form-step-2.active,
.form-step-3.active,
.form-step-4.active {
    display: block;
}

.form-btn-wrapper {

}
.form-back-btn {
    cursor: pointer;
    background: #FFFFFF;
    border: none;
    color: #07074D;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: none;
}
.form-back-btn.active {
    display: block;
}
.form-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
    background-color: #007070;
    color: white;
    cursor: pointer;
}
.form-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}
