.account-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.account-card {
	width: 800px;
	max-width: 100%;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
}

.account-card-header {
	padding: 30px 40px 22px;
	border-bottom: rgba(112, 112, 112, 0.15) 1px solid;
}

.account-card-header h2 {
	font-size: 18px;
	font-weight: 600;
}

.account-card-body {
	padding: 30px 40px;
}

.account-input-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 35px;
}
@media screen and (max-width: 992px) {
	.account-input-grid {
		display: flex;
		flex-direction: column;
	}
}

.account-input {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.account-input-group {
	position: relative;
	display: flex;
	width: 100%;
}
.account-input-group input {
	flex: 1;
}

.account-input-group input:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.account-input-group input:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.account-input-group-text {
	display: flex;
	align-items: center;
	text-align: center;
	white-space: nowrap;
	padding: 0 20px;
	border: #ddd 1px solid;
	border-radius: 5px;
	color: #222222;
	font-size: 14px;
	font-weight: 300;
}

.account-input-group-text:first-child {
	margin-right: -1px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.account-input-group-text:last-child {
	margin-left: -1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.account-input label {
	color: #222222;
	font-size: 14px;
	font-weight: 500;
}

.account-input input,
.account-input select {
	z-index: 1;
	width: 100%;
	height: 50px;
	padding: 0 20px;
	border: #ddd 1px solid;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 300;
}

.account-input select {
	appearance: none;
	background: transparent;
	background-image: url("/wp-content/themes/zo24/images/chevron-down.svg");
	background-repeat: no-repeat;
	background-position: center right 20px;
	background-size: 10px;
	padding-right: 30px;
}

.account-input input:focus,
.account-input select:focus {
	outline: none;
	border-color: #555;
}

button.account-input {
	background-color: #222;
	border: 0;
	color: #fff;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 0 30px;
	margin-top: 25px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
}

button.account-input:hover,
button.account-input:focus {
	background: #555;
}


@media screen and (max-width: 768px) {
	.account-card-body {
		padding: 20px;
	}
	.account-card-header {
		padding: 20px;
	}
}