@use "mixins";
@use "variables";

// sass-lint:disable class-name-format no-qualifying-elements id-name-format
//--------------------------------------------------------------
//   FORMS
//--------------------------------------------------------------

.ctct-form-wrapper {

	.ctct-form {
		@include mixins.clearfix;

		.ctct-label-top label,
		.ctct-label-bottom label {
			display: block;
		}

		.ctct-label-left label,
		.ctct-label-right label {
			display: inline-block;
		}
	}

	.ctct-input-container {

		label {
			color: variables.$color-gray;
			font-size: 0.8rem;
		}
	}

	.ctct-submit {
		cursor: pointer;
	}

	.ctct-form-field-checkbox {

		fieldset {
			border: none;
			padding: 0;

			legend {
				font-weight: normal;
				padding: 0;
			}
		}
	}
}
