/* Reset CSS */
*, *:before, *:after {
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box;
}

body, html {
   font-family: 'Inconsolata', monospace; /* Police changée pour Montserrat */
    font-size: 16px;
    color: #ffffff;
    height: 100%;
    background-color: #000000;
}

a:focus {outline: none;}
a:hover {text-decoration: none;}
h1,h2,h3,h4,h5,h6,p {margin: 0px;}
ul, li {margin: 0px; list-style-type: none;}
input, textarea, label {display: block; outline: none; border: none;}
button {outline: none; border: none; background: transparent; cursor: pointer;}
iframe {border: none;}

/* Structure principale */
.simpleslide100 {
    display: block;
    position: fixed;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.simpleslide100-item {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
}

.size1 {
    width: 100%;
    min-height: 100vh;
}

.overlay1 {
    position: relative;
    z-index: 1;
}

.size1.flex-col-c-m {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 15px;
    text-align: center;
}

/* Textes - MODIFIÉ avec nouvelle police et style */
.l1-txt1 {
  font-family: 'Inconsolata', monospace; /* Police changée */
    font-size: 30px; /* Taille réduite pour le texte plus long */
    font-weight: 300; /* Poids plus léger pour l'élégance */
    line-height: 1.4; /* Meilleur interligne pour texte long */
    color: #fff;
    text-transform: none; /* Pas de majuscules pour un look plus naturel */
    margin-bottom: 25px;
    letter-spacing: 0.5px; /* Espacement légèrement réduit */
    max-width: 800px; /* Largeur maximale pour une meilleure lisibilité */
    font-style: italic; /* Style italique pour l'élégance */
}

.m2-txt1 {
    font-family: 'Inconsolata', monospace; /* Police changée */
    font-size: 18px; /* Légèrement réduit */
    line-height: 1.6; /* Meilleur interligne */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 300; /* Plus léger */
    letter-spacing: 0.3px; /* Légèrement espacé */
}

/* Formulaire  */
.form-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 750px; /* Augmenté pour accommoder le champ plus large */
    margin: 25px 0;
    z-index: 1;
}

.wrap-input100 {
    position: relative;
    width: 80%; /* Augmenté de 70% à 80% pour plus de largeur */
    margin-right: 15px; 
}

.input100 {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    height: 62px;
    border-radius: 20px;
    padding: 0 30px;
    color: #fff;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
     font-family: 'Inconsolata', monospace;/* Police changée */
}

.input100:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.input100::placeholder {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

/* Bouton */
.join-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 35px; 
    background: #fff;
    color: #000;
    border-radius: 20px;
   font-family: 'Inconsolata', monospace; /* Police changée */
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.5px;
    min-width: 120px;
    height: 62px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.join-button:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.15);
}

.join-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.join-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* États du bouton */
.loading {
    background: #cccccc !important;
    color: #666 !important;
    transform: none !important;
    box-shadow: none !important;
}

.success {
    background: #626262 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3) !important;
}

.error {
    background: #f44336 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3) !important;
}

/* Vidéo */
video {
    max-width: 100%;
    width: 380px;
    height: 220px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* Messages de notification */
.notification {
    position: fixed;
    top: 25px;
    right: 25px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    max-width: 350px;
    font-family: 'Inconsolata', monospace; /* Police changée */
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    background-color: #595c59;
    border-left: 4px solid #606260;
}

.notification.error {
    background-color: #f44336;
    border-left: 4px solid #c62828;
}

.notification-icon {
    margin-right: 12px;
    font-size: 20px;
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .l1-txt1 {
        font-size: 24px; /* Ajusté pour mobile */
        padding: 0 15px;
    }
    
    .m2-txt1 {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .form-container {
        flex-direction: column;
        max-width: 90%;
    }
    
    .wrap-input100 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .input100 {
        height: 56px;
        font-size: 16px;
    }
    
    .join-button {
        width: 100%;
        height: 56px;
        padding: 15px 35px;
        font-size: 16px;
        min-width: auto;
    }

    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
        transform: translateY(-100%);
    }

    .notification.show {
        transform: translateY(0);
    }
    
    video {
        width: 320px;
        height: 180px;
    }
}

/* Style pour le nouveau titre Sign Up */
.signup-title {
  font-family: 'Inconsolata', monospace; /* Police changée */
    font-size: 32px;
    font-weight: 600; /* Légèrement réduit */
    color: #ffffff;
    text-transform: uppercase;
    margin: 25px 0 15px 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
}

.signup-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    bottom: -10px;
    left: 20%;
}

/* Responsive */
@media (max-width: 768px) {
    .signup-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
}