/* Background */
body {
    background: #F9F8F4;
}

.publish-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

/* Heading */
.publish-container h1 {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: #1A1A1A;
}

/* Elegant Card */
.publish-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

/* Label */
.publish-form label {
    margin-top: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #555;
    text-transform: uppercase;
}

/* Inputs */
.publish-form input,
.publish-form textarea {
    margin-top: 10px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 15px;
    background: #FAFAFA;
    transition: all 0.3s ease;
}

/* Focus Effect (Luxury Gold Glow) */
.publish-form input:focus,
.publish-form textarea:focus {
    border-color: #C9A227;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
    outline: none;
}

/* Textarea */
.publish-form textarea {
    height: 160px;
    resize: none;
}

/* File Input */
.publish-form input[type="file"] {
    background: transparent;
    padding: 12px;
    border: 1px dashed rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Button */
.publish-form button {
    margin-top: 40px;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: #1A1A1A;
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s ease;
}

.publish-form button:hover {
    background: #C9A227;
    color: #1A1A1A;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width:768px){
    .publish-form {
        padding: 30px;
    }
}