/**
 * Form to Post - CSS Styles
 *
 * Styles for the web component
 */

/* Container styles */
.form-to-post-container {
    max-width: 600px;
}

.form-to-post-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-to-post-container .form-group {
    margin-bottom: 15px;
}

.form-to-post-container .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-to-post-container .form-group input[type="text"],
.form-to-post-container .form-group input[type="email"],
.form-to-post-container .form-group textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.form-to-post-container .form-group input:invalid,
.form-to-post-container .form-group textarea:invalid {
    
}

.form-to-post-container .honeypot-field {
    display: none;
    position: absolute;
    left: -9999px;
}

.form-to-post-container .form-group input[type="text"]:focus,
.form-to-post-container .form-group input[type="email"]:focus,
.form-to-post-container .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 13, 210, 0.1);
}

.form-to-post-container .submit-btn {
    display: inline-block;
    background: #cc2b32;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 800;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.form-to-post-container .submit-btn:hover {
    background-color: #cc2b32;
}

.form-to-post-container .form-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: none;
}

.form-to-post-container .form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-to-post-container .form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-to-post-container .turnstile-container {
    margin: 15px 0;
}

.form-to-post-container .error-tooltip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}