.cms-form {
    padding: 80px 0;
}

.cms-form__title {
    font-size: 32px;
    margin-bottom: 10px;
}

.cms-form__description {
    margin-bottom: 30px;
    color: #666;
}

.cms-form__form {
    max-width: 600px;
}

.cms-form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.cms-form__field label {
    font-weight: 600;
    margin-bottom: 6px;
}

.cms-form__field input,
.cms-form__field textarea,
.cms-form__field select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.cms-form__field textarea {
    min-height: 120px;
    resize: vertical;
}

.cms-form__submit button {
    padding: 12px 30px;
    border: none;
    background: #0a3b4c;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.cms-form__submit button:hover {
    background: #0f5168;
}

/* ==========================================================
   DJANGO MESSAGES
   ========================================================== */

.cms-messages{
    width:100%;
    max-width:1200px;
    margin:20px auto;
    padding:0 20px;
    box-sizing:border-box;
}

.cms-message{
    padding:16px 20px;
    border-radius:10px;
    margin-bottom:12px;
    font-weight:600;
}

.cms-message--success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
}

.cms-message--error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fca5a5;
}