
.project-submission-wrapper {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

/* Each field */
.project-submission-wrapper .psub-field {
    margin-bottom: 15px;
}

.project-submission-wrapper label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.project-submission-wrapper input,
.project-submission-wrapper textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.project-submission-wrapper input:focus,
.project-submission-wrapper textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

/* Button */
#psub_submit_btn {
    background: #1e3a8a;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#psub_submit_btn:hover {
    background: #2563eb;
}

/* Success & error messages */
.psub-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    display: none;
    color: #000000 !important;
}

.psub-message.success {
    background: #dcfce7;
    color: #000000 !important;
    border: 1px solid #86efac;
}

.psub-message.error {
    background: #fee2e2;
    color: #000000;
    border: 1px solid #fca5a5;
}
