/**
 * Vendor Registration
 *
 * Base stylesheet.
 *
 * @package ThattukadaMarketplace
 */

/* --------------------------------------------------------------------------
   Registration Scope Reset
   -------------------------------------------------------------------------- */

.tkd-registration,
.tkd-registration *,
.tkd-registration *::before,
.tkd-registration *::after {
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Registration Wrapper
   -------------------------------------------------------------------------- */

.tkd-registration {
	width: 100%;
	max-width: 100%;
}

/* --------------------------------------------------------------------------
   Registration Main Container
   -------------------------------------------------------------------------- */

.tkd-registration__main {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 700px;
	margin: 40px auto;
	padding: 30px;
	min-height: 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
	.tkd-registration__main {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Desktop
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
	.tkd-registration__main {
		width: 100%;
	}
}