* {
    box-sizing: border-box;
}

:root {
	--brand-blue: #44b864;
}

body {
    margin: 0;
    min-height: 100dvh;
    background: #e9f0ea;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #4d1f1f;
}

.status-shell {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.status-card {
    width: min(100%, 560px);
    text-align: center;
    background: #ffffff;
    border: 1px solid #f1c5bd;
    border-radius: 14px;
    padding: 32px 24px;
    box-shadow: 0 10px 34px rgba(92, 29, 29, 0.08);
}

.status-icon-wrap {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #fff1ee;
    color: #d14b3f;
    display: grid;
    place-items: center;
    font-size: 34px;
}

.status-title {
    margin: 0;
    font-size: clamp(24px, 5.7vw, 38px);
    font-weight: 700;
}

.status-message {
    margin: 12px 0 22px;
    font-size: clamp(16px, 3.9vw, 20px);
    line-height: 1.45;
    color: #7a4c4c;
}

.status-action {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
}

#backToMerchantBtn {
	background-color: var(--brand-blue);
	border-color: var(--brand-blue);
	color: #fff;
	font-size: clamp(14px, 4vw, 18px);
	padding: 10px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	width:100%;
}
#backToMerchantBtn:hover {
	background-color: #2f964c;
	border-color: #2f964c;
}
#backToMerchantBtn:focus-visible {
	outline: 2px solid var(--brand-blue);
	outline-offset: 2px;
}