/* assets/css/style.css */

.systempay-formulaire-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.systempay-header {
    text-align: center;
    margin-bottom: 30px;
}

.systempay-logo {
    max-width: 200px;
    height: auto;
}

.systempay-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #e60000;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn-submit {
    background-color: #e60000;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #cc0000;
}

.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.form-footer p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

#systempay-loading {
    text-align: center;
    padding: 40px;
}

#systempay-loading p {
    font-size: 18px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .systempay-formulaire-container {
        padding: 10px;
    }
    
    .systempay-form {
        padding: 20px;
    }
}

/* Cookie banner styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
}

.cookie-banner .cookie-text {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    color: #333;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-banner .accept-btn {
    background: #333;
    color: white;
}

.cookie-banner .decline-btn {
    background: white;
    color: #333;
    border: 1px solid #333;
}

/* Admin styles */
.notice code {
    background: #f1f1f1;
    padding: 2px 5px;
    border-radius: 3px;
}