html, body {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    background: #23272b !important;
}
.ccf-form-main-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.ccf-form-container {
    background: #181a1d;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.15);
    padding: 38px 34px 34px 34px;
    max-width: 430px;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.ccf-form-container h2 {
    color: #fff;
    margin-bottom: 26px;
    font-size: 2.1em;
    letter-spacing: 1px;
    font-weight: 600;
}
.ccf-form input[type="text"],
.ccf-form input[type="email"],
.ccf-form textarea {
    width: 100%;
    padding: 14px 12px;
    margin-bottom: 18px;
    border: none;
    border-radius: 6px;
    background: #d4d4d4;
    font-size: 1em;
    color: #222;
    box-sizing: border-box;
}
.ccf-form textarea {
    min-height: 80px;
    resize: vertical;
}
.ccf-form button[type="submit"] {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 14px 0;
    font-weight: bold;
    font-size: 1.13em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    width: 100%;
}
.ccf-form button[type="submit"]:hover {
    background: #1252a0;
}
.ccf-success {
    color: #fff;
    background: #388e3c;
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
}

/* ==== Mobile Responsive Fix: Center Form ==== */
@media (max-width: 600px) {
    .ccf-form-main-wrap {
        justify-content: center !important;
        align-items: flex-start !important;
        padding: 20px 0 !important;
    }
    .ccf-form-container {
        padding: 20px 6vw;
        border-radius: 10px;
        max-width: 98vw;
    }
    .ccf-form-container h2 {
        font-size: 1.3em;
    }
}