.cpop_input_column p {
    margin: 0;
}

#cpop_settings_heading_text_align {
    width: auto !important;
    padding: 0 24px 0 8px;
}

/* The "Required" Asterisk */
.cpop_required {
    color: red;
}

.cpop-success-message,
.cpop-error-message,
.cpop-user-defined-shortcode-message {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 13px 20px;
    max-width: 40em;
    margin-top: 10px;
    margin-bottom: 20px;
    white-space: pre-line;
}

.cpop-success-message,
.cpop-error-message {
    font-size: 1.25em;
    line-height: 25px;
}

.cpop-success-message {
    background-color: rgba(52, 217, 52, 0.2);
}

.cpop-error-message {
    background-color: rgba(217, 52, 52, 0.2);
}

/* Form Labels */
.cpop_form_line label {
    font-weight: bold;
    display: inline-block;
    padding: 6px 6px 6px 0;
}

/* Form Inputs */
.cpop_form_line input[type=text],
.cpop_form_line select,
.cpop_form_line textarea {
    width: 100%;
    padding: 6px;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

/* Submit Button */
.cpop_form_line input[type=submit] {
    background-color: #FF0000;
    color: rgba(255, 255, 255, 0.87);
    transition: color .5s;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Submit Button On-Hover*/
.cpop_form_line input[type=submit]:hover {
    background-color: #FF0000;
    color: rgb(255, 255, 255);
}

/* Label Column */
.cpop_label_column {
    float: left;
    width: 35%;
    margin-top: 6px;
}

/* Label Column w/ 25% width */
.cpop_label_column25 {
    width: 25%;
}

/*  Input Column */
.cpop_input_column {
    float: left;
    width: 65%;
    margin-top: 6px;
}

/* Input Column w/ 75% width */
.cpop_input_column75 {
    width: 75%;
}

/* Clearing floats */
.cpop_form_line:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .cpop_label_column, .cpop_input_column, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}