/*
Theme Name: Bridge
 

*/
.frontend-post-form {
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.frontend-post-form p {
    margin-bottom: 15px;
}

.frontend-post-form input[type="text"],
.frontend-post-form input[type="email"],
.frontend-post-form input[type="file"],
.frontend-post-form textarea,
.frontend-post-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fafafa;
    box-sizing: border-box;
    transition: 0.3s ease;
}

.frontend-post-form input[type="text"]:focus,
.frontend-post-form input[type="email"]:focus,
.frontend-post-form textarea:focus,
.frontend-post-form select:focus {
    border-color: #2271b1;
    background: #fff;
    outline: none;
    box-shadow: 0 0 6px rgba(34,113,177,0.3);
}

.frontend-post-form input[type="submit"] {
    background: green;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.frontend-post-form input[type="submit"]:hover {
    background: #1b5c91;
}

.frontend-post-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

.frontend-post-form .wp-editor-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ccc;
}
