.checkinfly_widget {
	padding: 2rem;
	padding-top: 3rem;
	color: #fff;
	background: linear-gradient(105deg, #7576ff 10.14%, #3a3be0 71.7%);
	border-radius: 3.5rem;
	border: 0.1rem solid #e6e9ef;
	font-family: Arial, sans-serif;
}

.checkinfly_widget__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.4rem;
}

.checkinfly_widget__title {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.2;
}

.checkinfly_widget__logo {
	max-width: 11rem;
	flex-shrink: 0;
}

.checkinfly_widget__img {
	display: block;
	max-width: 100%;
}

/* FORM */
.checkinfly_widget__form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

/* FIELD */
.field {
	width: 100%;
	height: 4.4rem;
	color: #000;
	background-color: #fff;
	border-radius: 1.6rem;
	display: flex;
	flex-direction: column;
	padding: 0.4rem;
	gap: 0.4rem;
}

.field.error {
	border: 2px solid red;
}

.field__label {
	margin-left: 0.5rem;
	font-size: 0.85rem;
	text-align: start;
}

/* INPUT WRAPPER */
.field__wrapper {
	position: relative;
}

.field__input {
	width: 100%;
	padding: 0.1rem 0.7rem;
	border-radius: 12px;
	border: none;
	outline: none;
	font-size: 14px;
}

/* ICON */
.field__icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.6;
	pointer-events: none;
}

/* BUTTON */
.checkinfly_widget__submit {
	width: 100%;
	height: 4.4rem;
	padding: 14px;
	border-radius: 1.6rem;
	border: none;
	color: #fff;
	background: #fa9e1b;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: 0.2s;
}

.checkinfly_widget__submit:hover {
	color: #000;
	background-color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
	.checkinfly_widget__form {
		grid-template-columns: 1fr;
	}
}
