/* Layout principal */
.profile-restricted-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Carte centrale */
.profile-restricted-card {
    background: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: left;
}

/* Titre */
.profile-restricted-card h2 {
    margin-bottom: 25px;
    font-size: 1.8em;
    text-align: center;
}

/* Labels + Inputs */
.profile-restricted-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    margin-top: 20px;
}

.profile-restricted-card input[type="password"],
.profile-restricted-card input[type="email"],
.profile-restricted-card input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 33px;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-restricted-card input:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
    outline: none;
}

/* Bouton */
.buttonRadius {
    margin-top: 30px;
    width: 100%;
    padding: 12px;
    border: none;
    color: black;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonRadius:hover {
    background-color: #cdd751;
}

/* Messages flash */
.message-error,
.message-info {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 500;
    text-align: center;
}

.message-error {
    background-color: #ffe0e0;
    color: #d32f2f;
}

.message-info {
    background-color: #e0f2ff;
    color: #0277bd;
}

/* Liens */
.logout-link {
    display: block;
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    text-decoration: none;
    transition: color 0.2s;
}

.logout-link:hover {
    color: #000;
}

/* Couleurs dynamiques */
.greenInfo {
    color: green;
}

.redInfo {
    color: red;
}

/* Mode sombre */
body.dark-mode {
    background-color: #121212;
}

body.dark-mode .profile-restricted-card {
    background: black;
    color: #ddd;
}

body.dark-mode input {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #444;
}

body.dark-mode .message-error {
    background-color: #4a1c1c;
    color: #ff6b6b;
}

body.dark-mode .message-info {
    background-color: #1c3c4a;
    color: #4ec3ff;
}

body.dark-mode .logout-link {
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 600px) {
    .profile-restricted-card {
        padding: 25px 20px;
    }

    .profile-restricted-card h2 {
        font-size: 1.5em;
    }

    .buttonRadius {
        font-size: 0.95em;
        padding: 10px;
    }
}
