/* 🔹 Create Project Form Styling */
.project-create-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 2em;
    background: #ffffff;
    border: 1px solid #ccd0d4;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    line-height: 1.5;
}

.project-create-form h2 {
    margin-top: 0;
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #333;
}

.project-create-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #222;
}

.project-create-form input[type="text"],
.project-create-form textarea {
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 1.5em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.project-create-form input[type="text"]:focus,
.project-create-form textarea:focus {
    border-color: #2271b1;
    outline: none;
}

.project-create-form textarea {
    min-height: 120px;
    resize: vertical;
}

.project-create-form button[type="submit"] {
    padding: 0.85em 2em;
    font-size: 1em;
    background-color: #007cba;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.project-create-form button[type="submit"]:hover {
    background-color: #005a9c;
}

.project-create-form .notice {
    padding: 1em;
    margin-bottom: 1.5em;
    background: #f0f8ff;
    border-left: 5px solid #007cba;
    border-radius: 4px;
}
