/* Styles communs pour forgot-password et reset-password */

.container {
    max-width: 400px;
    margin: 100px auto 50px auto;
    padding: 20px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #ff4656;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff4656;
}

p {
    margin: 10px 0;
    font-size: 0.9rem;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 90%;
    padding: 10px 12px;
    margin: 10px 0;
    border: 1px solid #b846ff;
    border-radius: 8px;
    background: rgba(30,30,30,0.9);
    color: #fff;
    font-size: 1rem;
}

input::placeholder {
    color: #ccc;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    background: linear-gradient(135deg, #6a0dad, #ff006e);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 70, 255, 0.4);
}

a {
    color: #ff4656;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}