.generic-contact-form{
	.generic-single-input {
		label {
			font-size: 16px;
			color: #000000;
			text-transform: capitalize;
			font-weight: 500;
			margin-bottom: 15px;
			display: block;
			cursor: default;
		}
		input {
			width: 100%;
			height: 50px;
			border: 1px solid #F5F5F5;
			padding: 0 20px;
			color: #000000;
			background: #F5F5F5;
			font-weight: 500;
			transition: 0.3s;
			margin-bottom: 20px;
			&:focus {
				border-color: #592DEE;
			}
		}
		textarea {
			width: 100%;
			height: 180px;
			border: 1px solid #F5F5F5;
			padding: 20px;
			color: #000000;
			background: #F5F5F5;
			font-weight: 500;
			transition: 0.3s;
			margin-bottom: 20px;
			resize: none;
			line-height: 1;
			&:focus {
				border-color: #592DEE;
			}
		}
		br{
			display: none;
		}
	}
}