.industries-form-container,
.industries-form-container-services {
    background: #EEF1F3;
    border-radius: 25px;
    padding: 35px 60px 60px 60px;
    position: relative;
}
.industries-form-container-services {
    padding: 60px;
}
.industries-form-container::after {
	content: "";
	width: 389px;
	height: 473px;
	background-image: url(/local/templates/dial24/images/flower-form.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: 0px;
	left: 0px;
	border-radius: 25px;
}
.industries-form-content {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
    align-items: center;
}
.industries-form-content .industries-form-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.industries-form-content .industries-form-title h3 {
    font-size: 40px;
    font-weight: 400;
    text-align: left;
	font-family: Source Sans Pro, sans-serif;
	letter-spacing: -1px;
	margin-bottom: 20px;
	text-align: center;
}
.industries-form-content .industries-form-description,
.popup-content_form p {
	font-family: Source Sans Pro, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	max-width: 800px;
	margin-bottom: 40px;
	text-align: center;
}
.popup-content_form p {
    max-width: 100%;
    margin-bottom: 0;
}
.industries-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
	width: 440px;
    max-width: 440px;
}

.industries-form-field {
    display: flex;
    flex-direction: column;
}

.industries-form-input input, .industries-form-input textarea {
    width: 100%;
    padding: 15px;
    background-color: #F5F5F5;
    color: #333;
    outline: none;
    transition: box-shadow 0.3s ease;
	border: none;
	border-radius: 10px;
        background: #ffffff;
}
.industries-form-input textarea {
    max-height: 120px;
	min-height: 80px;
}

input::placeholder,
textarea::placeholder {
    color: #BBC4CD;
	text-shadow: 0px 4px 4px 0px #00000040;
    font-size: 20px;
}

.industries-form-input input:focus {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.industries-form-submit {
    width: 100%;
    padding: 11px;
    color: #FFFFFF;
    background: #FF3D00;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;

	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.industries-form-submit:hover {
    background-color: #333333;
}

@media (max-width: 1200px) {
	.industries-form-container::after {
		content: none;
	}
}
@media (max-width: 768px) {
	.industries-form-content {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.industries-form-title-chat {
		display: none;
	}
	.industries-form-fields {
        gap: 10px;
        width: 100%;
    }
	.industries-form-content .industries-form-title {
		width: 100%;
	}
	.industries-form-content .industries-form-description,
	.popup-content_form p {
        margin-bottom: 0px;
		font-size: 16px;
    }
	.industries-form-content .industries-form-title h3 {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.industries-form-container {
		padding: 25px 40px 40px 40px;
	}
}
@media (max-width: 520px) {
	.industries-form-container {
		padding: 15px 20px 20px 20px;
	}
}