body {
	padding: 0px;
	margin: 0;
	background-color: #ffeee8;
	height: 100vh;
	font-family: "Inter", sans-serif;
}
ul{
    padding: 0px;
    margin: 0;
    list-style: none;
}

a{
    text-decoration: none;
    color: initial;
}

.gap-y15 {
	gap: 20px 0px;
}

.form-card {
	padding: 30px 30px;
}
.form-card .bg_row{
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
}

.form-card .imagelogo img{
    max-width: 100px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.form-card .headinglogo h4 {
	font-size: clamp(20px, 5vw, 24px);
	font-weight: 500;
	color: #333;
	margin-bottom: 0;
}
.form-card .form-group label {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin-bottom: 4px;
}


.form-card .form-group .input-wrapper {
  position: relative;
}

.form-card .form-group .input-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 44px;
    background-color: #ff6a6a;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 2;
}
.form-card .form-group .input-wrapper.none_right::before {
  display: none;
}

.form-card .form-group input {
    width: 100%;
    border: 1px solid #BDC8D3;
    border-radius: 4px;
    padding: 9px 15px;
    min-height: 38px;
    font-size: 16px;
    padding-left: 18px;
    position: relative;
    z-index: 1;
    background-color: white;
    font-weight: 400;
    color: #333;
    overflow: hidden;
}

.form-card .form-group select {
	width: 100%;
	border: 1px solid #BDC8D3;
	border-radius: 4px;
	padding: 9px 15px;
	min-height: 38px;
	font-size: 16px;
	padding-left: 18px;
	position: relative;
	z-index: 1;
	background-color: white;
	font-weight: 400;
	color: #333;
}


.form-card .form-group input:focus,
.form-card .form-group textarea:focus
.form-card .form-group select:focus{
    box-shadow: none;
    outline: none;
}

.form-card .countryrow {
    display: flex;
}

.form-card .country-box {
    width: 15%;
    padding: 0 0;
}

.form-card .country-box select.form-control {
	padding: 6px 0px;
	height: 44px;
	border-right: none !important;
	padding-left: 7px;
	border-radius: .25rem 0rem 0rem .25rem;
}
.form-card .country-Mobile-box {
    width: 85%;
}

.form-card .country-Mobile-box input{
    border-radius: 0px 4px 4px 0px;
}


.form-card .input-wrapper select:focus {
  box-shadow: none !important;
  outline: none;
}

.form-card .input-wrapper textarea:focus {
  box-shadow: none !important;
  outline: none;
border: 1px solid #BDC8D3;
}

.button button {
	background-color: #f15a25;
	color: #fff;
	border: 1px solid #f15a25;
	width: auto;
	font-size: 16px;
	font-weight: 500;
	padding: 8px 18px;
	border-radius: 4px;
}


@media(max-width:767px) {
    .form-card {
	padding: 30px 10px;
}
}


