Hi @skirksey24
I hope you are doing good today.
I review your site CSS and it seems you use some custom code to make paddings, which affects inside fields as well. Please remove this code:
/* For 640 Resolution */
@media only screen
and (min-device-width : 360px)
and (max-device-width : 640px)
{
.forminator-custom-form-21145
{
padding: 30px 60px 30px 60px !important;
}
}
/* For 1024 Resolution */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
{
.forminator-custom-form-21145
{
padding: 30px 60px 30px 60px !important;
}
}
/* For 1366 Resolution */
@media only screen
and (min-device-width : 1030px)
and (max-device-width : 1366px)
{
.forminator-custom-form-21145{
padding: 130px 160px 130px 160px !important;
}
}
/* For 1920 Resolution */
@media only screen
and (min-device-width : 1370px)
and (max-device-width : 1920px)
{
.forminator-custom-form-21145{
padding: 20px 300px 20px 300px !important;
}
}
and use this one:
/* For 640 Resolution */
@media only screen
and (min-device-width : 360px)
and (max-device-width : 640px)
{
#forminator-module-21145
{
margin: 30px 60px 30px 60px !important; width:auto !important;
}
}
/* For 1024 Resolution */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
{
#forminator-module-21145
{
margin: 30px 60px 30px 60px !important; width:auto !important;
}
}
/* For 1366 Resolution */
@media only screen
and (min-device-width : 1030px)
and (max-device-width : 1366px)
{
#forminator-module-21145{
margin: 130px 160px 130px 160px !important; width:auto !important;
}
}
/* For 1920 Resolution */
@media only screen
and (min-device-width : 1370px)
and (max-device-width : 1920px)
{
#forminator-module-21145{
margin: 20px 300px 20px 300px !important; width:auto !important;
}
}
Kind Regards,
Kris