#cci-form {
    max-width: 650px;
}

#cci-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 500;
}

/* Inputs */
#cci-form input,
#cci-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    background: #f5f5f5;
}

/* OTP group */
.cci-group {
    display: flex;
}

.cci-group input {
    flex: 1;
    border-right: none;
}

.cci-group button {
    width: 130px;
    border: none;
    background: #007bff;
    color: #fff;
	cursor: pointer;
}

/* Verify button */
#fm-verify {
    background: #28a745;
}

/* Human check */
.cci-human {
    border: 1px solid #ccc;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.cci-icons span {
    font-size: 20px;
    margin: 0 10px;
    cursor: pointer;
}

/* Submit */
.cci-submit {
	padding: 10px 12px;
	color: white;
	background: #1A1A1A;
	min-width: 96px;
	outline: none;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	margin-top: 20px;
}

.cci-submit:hover {
	background: #4D4D4D;
	cursor: pointer;
}

.cci-captcha {
    border: 1px solid #ccc;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.cci-captcha-options span {
    font-size: 22px;
    margin: 0 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.cci-captcha-options span.active {
    background: #007bff;
    color: #fff;
}

.cci-captcha p {
	margin: 0;
}

/* Error text */
.cci-error {
    color: #dc3232;
    font-size: 13px;
    margin-top: 5px;
    display: none;
	opacity: 0;
    transition: 0.2s;
}

/* Error text */
.cci-field.error .cci-error {
    display: block;
    opacity: 1;
}

/* Error input */
.cci-field.error input,
.cci-field.error textarea {
    border-color: #dc3232;
}

/* Smooth look */
.cci-field {
    margin-bottom: 15px;
}

/* Error border for captcha */
.cci-captcha-field.error .cci-captcha {
    border: 1px solid #dc3232;
}

/* Error text already handled */

.cci-captcha-field {
    margin-top: 20px;
}

/* Full screen loader */
#cci-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}

/* Spinner */
.cci-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: fm-spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
}

.cci-field label .required {
	color: #e74c3c;
}

@keyframes fm-spin {
    to {
        transform: rotate(360deg);
    }
}.plugin-branding {	margin: 12px 0 8px;	text-align:center;	color:#666;}div.plugin-branding a {	color:#FF6200;	text-decoration:underline;}