form {
	.form-group {
		input,
		textarea {
			border-radius: 0;
			resize: none;

			&:focus,
			&:active {
				border-radius: 0;
				outline: none;
				box-shadow: none;
				border-color: #ff6600;
			}

			&::-webkit-input-placeholder {
				color: $grey_color;
				font-size: 12px;
			}
			&::-moz-placeholder {
				color: $grey_color;
				font-size: 12px;
			}
			&:-ms-input-placeholder {
				color: $grey_color;
				font-size: 12px;
			}
			&:-moz-placeholder {
				color: $grey_color;
				font-size: 12px;
			}
		}
	}
}