.adl-wrapper {
	display: flex;
	justify-content: center;
}

.adl-card {
	background: #ffffff;
	border-radius: 8px;
	width: 100%;
	max-width: 420px;
	box-sizing: border-box;
}

.adl-logo {
	color: #01598c;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	text-align: center;
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.adl-logo sup {
	font-size: 0.5em;
	vertical-align: super;
	line-height: 0;
}

.adl-logo {
	svg {
		max-width: 5rem;
	}
}
.adl-heading {
	color: #334155;
	font-size: 1.25rem;
	font-weight: 500;
	text-align: center;
	margin: 0 0 1.75rem;
	line-height: 1.75;
}

.adl-form {
	display: block;
}

.adl-field {
	margin-bottom: 1.25rem;
}

.adl-label {
	display: block;
	color: #64748b;
	font-size: 0.8125rem;
	margin-bottom: 0.375rem;
	font-weight: 400;
}

.adl-input {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: var(--amax-font-size-default, 1rem);
	color: #334155;
	background: #ffffff;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: inherit;
}

.adl-input:focus {
	border-color: #198adb;
	box-shadow: 0 0 0 3px rgba(25, 138, 219, 0.15);
}

.adl-input:disabled {
	background: #f9fafb;
	cursor: not-allowed;
}

.adl-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 1.5rem;
}

.adl-button {
	background-color: #01598c;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 0.625rem 1rem;
	font-size: var(--amax-font-size-default, 1rem);
	font-weight: 500;
	cursor: pointer;
	font-family: inherit;
	transition: background-color 0.15s ease;
	line-height: 1.4;
}

.adl-button:hover:not(:disabled) {
	background-color: #014f7a;
}

.adl-button:active:not(:disabled) {
	background-color: #013f61;
}

.adl-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}
