.industries-form-container {
	background: #E83E0A;
	border-radius: 50px;
	padding: 60px 130px 60px 60px;
	margin-bottom: 100px;
}
.industries-form-content {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.industries-form-content .industries-form-title h3 {
    font-size: 60px;
    font-weight: 400;
    text-align: left;
	font-family: Source Sans Pro;
	line-height: 60px;
	letter-spacing: -3px;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	max-width: 590px;
	margin-bottom: 40px;
}
.industries-form-content .industries-form-description-text {
	font-family: Source Sans Pro;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	text-align: left;
	color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	max-width: 430px;
	margin-bottom: 40px;
}
.industries-form-title-chat {
	display: block;
    width: 200px;
    height: 180px;
    background-image: url(/local/templates/dial24/images/chat.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.industries-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
	width: 40%;
}

.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;
	box-shadow: 0px 4px 4px 0px #00000040;
	border-radius: 10px;
}
.industries-form-input textarea {
    max-height: 120px;
}

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: 20px;
    color: #FFFFFF;
    background: #1C1F23;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	box-shadow: 0px 4px 4px 0px #00000040;

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

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

@media (max-width: 992px) {
	.industries-form-content .industries-form-title h3 {
		font-size: 30px;
		line-height: normal;
		letter-spacing: normal;
	}
	.industries-form-content .industries-form-description-text {
		font-size: 18px;
		line-height: normal;
		margin-bottom: 20px;
	}
	.industries-form-title-chat {
    	display: none;
	}
	.industries-form-content {
		gap: 30px;
		flex-direction: column;
	}
	.industries-form-fields {
		gap: 10px;
		width: 100%;
	}
	.industries-form-container {
		padding: 40px;
		margin-bottom: 80px;
	}
}