@media (min-width: 800px) {
#responsive-form{
max-width:100%;
margin:0 auto;
width:100%;
}
#responsive-form .form-row{
width: 100%;
}
#responsive-form .column-half{
float: left;
position: relative;
padding: 0.65rem;
width:50%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
} 
#responsive-form .column-full{
float: left;
position: relative;
padding: 0.65rem;
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
#responsive-form .clearfix:after {
content: "";
display: table;
clear: both;
}}
.page-id-37551 .container, 
.page-id-37551 .section_wrapper, 
.page-id-37551 .content_wrapper {
width: 100vw;
max-width: 100%;
padding: 0;
margin: 0;
} .page-id-XXX body {
background-color: var(--background-color);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
} .background-circle {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: rgba(225, 131, 10, 0.1);
z-index: -1;
display: flex;
justify-content: center;
align-items: center;
} .confirmation-card {
background-color: var(--white);
border-radius: 8px;
box-shadow: 0 0 20px rgba(225, 131, 10, 0.1);
width: 100%;
max-width: 400px;
padding: 20px;
text-align: center;
} .btn {
display: inline-block;
background-color: var(--primary-color);
color: var(--white);
padding: 12px 24px;
border-radius: 5px;
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: background-color 0.3s;
}
.btn:hover {
background-color: var(--primary-hover);
}