/* Fichier: assets/css/frontend-forms.css */

.strktur-frontend-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.strktur-frontend-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.strktur-frontend-form input[type="text"],
.strktur-frontend-form input[type="number"],
.strktur-frontend-form input[type="email"],
.strktur-frontend-form input[type="password"],
.strktur-frontend-form select,
.strktur-frontend-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.strktur-frontend-form input[type="submit"],
.strktur-frontend-form button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.strktur-frontend-form input[type="submit"]:hover,
.strktur-frontend-form button[type="submit"]:hover {
    background-color: #45a049;
}

.strktur-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.strktur-form-message p {
    margin: 0;
}

.strktur-form-message p[style="color: green;"] {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.strktur-form-message p[style="color: red;"] {
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}
