 /* Styles spécifiques à la page d'inscription */
 .signup-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: var(--white);
    min-height: 100vh;
}

.signup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-medium);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--love-primary);
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: heartbeat 1.5s infinite;
}

.progress-steps {
    display: flex;
    gap: 10px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-medium);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    transition: all 0.3s;
}

.step.active {
    background: var(--love-primary);
    transform: scale(1.1);
}

.step.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
}

.signup-form {
    position: relative;
    min-height: 60vh;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    color: var(--love-dark);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: var(--love-primary);
    box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.2);
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-dark);
    cursor: pointer;
}

.password-strength {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    flex: 1;
    height: 5px;
    background: var(--gray-medium);
    border-radius: 5px;
    overflow: hidden;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 20%;
    background: #ff4757;
    transition: all 0.3s;
}

.password-strength.medium .strength-bar::after {
    width: 60%;
    background: #ffa502;
}

.password-strength.strong .strength-bar::after {
    width: 100%;
    background: #2ed573;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-medium);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-group input[type="radio"]:checked {
    border-color: var(--love-primary);
}

.radio-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    background: var(--love-primary);
    border-radius: 50%;
}

.range-group {
    margin-top: 30px;
}

.range-slider {
    position: relative;
    height: 5px;
    background: var(--gray-medium);
    border-radius: 5px;
    margin: 30px 0;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    pointer-events: none;
    appearance: none;
    background: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--love-primary);
    appearance: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

#ageRangeValue {
    color: var(--love-primary);
    font-weight: bold;
}

.upload-container {
    margin-top: 20px;
}

.upload-box {
    border: 2px dashed var(--gray-medium);
    border-radius: 15px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.upload-box:hover {
    border-color: var(--love-primary);
    color: var(--love-primary);
}

.upload-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.upload-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.upload-box .file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

#mainPhoto {
    height: 200px;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.photo-rules {
    margin-top: 20px;
    padding: 10px;
    background: var(--love-light);
    border-radius: 10px;
    color: var(--love-dark);
    font-size: 0.9rem;
}

.photo-rules i {
    margin-right: 5px;
    color: var(--love-primary);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-prev {
    background: none;
    border: 2px solid var(--gray-medium);
    color: var(--gray-dark);
}

.btn-prev:hover {
    border-color: var(--love-primary);
    color: var(--love-primary);
}

.btn-next, .btn-submit {
    background: linear-gradient(135deg, var(--love-primary), var(--love-accent));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
}

.btn-submit {
    width: 100%;
}

.location-results {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: none;
}

.location-item {
    padding: 10px 15px;
    background: white;
    border-bottom: 1px solid var(--gray-light);
    cursor: pointer;
}

.location-item:hover {
    background: var(--love-light);
}

/* Styles pour l'inscription sociale */
.social-signup {
margin-bottom: 30px;
}

.social-divider {
text-align: center;
color: var(--gray-dark);
position: relative;
margin: 20px 0;
}

.social-divider::before,
.social-divider::after {
content: "";
position: absolute;
top: 50%;
width: 45%;
height: 1px;
background: var(--gray-medium);
}

.social-divider::before {
left: 0;
}

.social-divider::after {
right: 0;
}

.social-divider span {
background: var(--white);
padding: 0 10px;
position: relative;
z-index: 1;
}

.social-buttons {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 15px;
}

.social-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px;
border-radius: 50px;
border: none;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.social-btn i {
font-size: 1.2rem;
}

.social-btn.fb {
background: #1877f2;
color: white;
}

.social-btn.google {
background: white;
color: #5f6368;
border: 1px solid var(--gray-medium);
}

.social-btn.apple {
background: #000;
color: white;
}

.social-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-note {
text-align: center;
font-size: 0.8rem;
color: var(--gray-dark);
}

.social-note a {
color: var(--love-primary);
text-decoration: none;
}

/* Styles pour le sélecteur de pays */
.phone-input-container {
display: flex;
border: 2px solid var(--gray-medium);
border-radius: 10px;
overflow: hidden;
transition: all 0.3s;
}

.phone-input-container:focus-within {
border-color: var(--love-primary);
box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.2);
}

.country-selector {
position: relative;
min-width: 100px;
background: var(--gray-light);
}

.selected-country {
display: flex;
align-items: center;
padding: 0 10px;
height: 100%;
cursor: pointer;
}

.country-flag {
width: 20px;
height: 15px;
margin-right: 8px;
object-fit: cover;
}

.country-code {
font-size: 0.9rem;
margin-right: 5px;
}

.country-selector i {
font-size: 0.8rem;
color: var(--gray-dark);
}

.country-dropdown {
position: absolute;
top: 100%;
left: 0;
width: 300px;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
z-index: 100;
display: none;
}

.country-selector.open .country-dropdown {
display: block;
}

.search-box {
padding: 10px;
display: flex;
align-items: center;
border-bottom: 1px solid var(--gray-light);
}

.search-box i {
margin-right: 10px;
color: var(--gray-dark);
}

.search-box input {
border: none;
outline: none;
width: 100%;
padding: 5px;
}

.country-list {
max-height: 200px;
overflow-y: auto;
}

.country-item {
display: flex;
align-items: center;
padding: 8px 15px;
cursor: pointer;
transition: background 0.2s;
}

.country-item:hover {
background: var(--love-light);
}

.country-item img {
width: 20px;
height: 15px;
margin-right: 10px;
object-fit: cover;
}

.country-item .country-name {
flex: 1;
font-size: 0.9rem;
}

.country-item .country-code {
color: var(--gray-dark);
font-size: 0.8rem;
}

#phone {
flex: 1;
border: none;
padding: 15px;
outline: none;
}


/* Animation pour les étapes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
    .signup-container {
        padding: 15px;
    }
    
    .form-step h2 {
        font-size: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}