.cupf-form-main-wrap {
    width: 100%;
    display: flex
;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0px 0 40px 0;
    margin-left: 92px;
    margin-top: 20px;
}

.cupf-form-container {
    background: #181a1d;
    border-radius: 12px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.12);
    padding: 46px 34px 34px 34px;
    min-width: 420px;
    max-width: 470px;
    margin-left: 3vw;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cupf-form-container h2 {
    color: #fff;
    margin-bottom: 26px;
    font-size: 2.3em;
    letter-spacing: 1px;
    font-weight: 500;
}
.cupf-form input[type="text"],
.cupf-form input[type="email"],
.cupf-form textarea {
    width: 100%;
    padding: 14px 12px;
    margin-bottom: 18px;
    border: none;
    border-radius: 4px;
    background: #d4d4d4;
    font-size: 1em;
    color: #222;
}
.cupf-form textarea {
    min-height: 70px;
    resize: vertical;
}
.cupf-form button[type="submit"] {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 14px 38px;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}
.cupf-form button[type="submit"]:hover {
    background: #1252a0;
}
.cupf-success {
    color: #fff;
    background: #388e3c;
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    width: 100%;
}

@media (max-width: 900px) {
    .cupf-form-container {
        min-width: 0;
        max-width: 100vw;
        margin-left: 0;
        padding: 34px 10vw;
    }
    .cupf-form-main-wrap {
        justify-content: center;
        padding: 0 0 40px 0;
    }
}