/* ----- Réinitialisation de base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ----- Arrière-plan de la page ----- */
body {
    background: linear-gradient(150deg, #ff9011, #000000);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----- Conteneur principal ----- */
.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
/*titre*/
.container h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/*formulaire*/
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #ccc;
    background-color: #f8f8f8;
    font-size: 16px;
    color: #333;
    transition: border 0.3s ease, background-color 0.3s ease;
}

input:focus {
    border-color: #000000;
    background-color: #fff;
    outline: none;
}

/* ----- Bouton de connexion ----- */
.btn p {
    width: 100%;
    padding: 14px;
    background-color: #ff6200;;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn:hover {
    background-color: #000000;
}


.btn:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* ----- Lien pour l'inscription ----- */
.signup-link {
    margin-top: 20px;
    font-size: 14px;
    color: #ff0000;
}

.signup-link a {
    color: #2575fc;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}
