@font-face {
    font-family: 'Epilogue';
    src: url('../Ressources/Font/Epilogue-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* Global : toute la page en noir */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000; /* Fond noir pour toute la page */
    color: #fff;
    font-family: 'Epilogue', sans-serif;
}

/* Styles spécifiques à la page d'inscription */
.signup-page {
    background-color: #000; /* Conserve le fond noir */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
}

/* Mise en page du main (contenant uniquement la partie inscription) */
.signup-page main {
    padding-top: 70px;
    width: 100%;
}

/* Conteneur principal de l'inscription */
.signup-page .signup-container {
    width: 450px;
    background: linear-gradient(135deg, #4648FF 0%, #FF7262 100%);
    color: #fff;
    padding: 50px 35px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Titre */
.signup-page .signup-container h1 {
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Formulaire */
.signup-page .signup-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Groupe des champs de saisie */
.signup-page .input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 90%;
    height: 55px;
    margin: 0 auto;
}

/* Icône à gauche */
.signup-page .input-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.signup-page .input-group .icon svg,
.signup-page .input-group .toggle-password svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}

/* Icône pour afficher/masquer le mot de passe */
.signup-page .input-group .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Champs de saisie et select */
.signup-page .input-group input,
.signup-page .input-group select {
    width: 100%;
    height: 100%;
    padding: 15px 65px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Focus sur input et select */
.signup-page .input-group input:focus,
.signup-page .input-group select:focus {
    outline: none;
    background: #111;
    box-shadow: 0 0 5px rgba(255, 114, 98, 0.8);
}

/* Style personnalisé pour select */
.signup-page .input-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><polygon fill="%23fff" points="0,0 4,0 2,5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 100px center;
    background-size: 15px auto;
}



/* Bouton */
.signup-page .btn {
    background: #000;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    width: 90%;
    transition: background 0.3s, opacity 0.2s;
    margin: 0 auto;
}

.signup-page .btn:hover {
    opacity: 0.8;
    background: #111;
}
