﻿
/* CHECKOUT MFA MODAL */
.mfa-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.mfa-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	min-height: 400px;
	max-width: 95vw;
	height: fit-content;
	max-height: 95vh;
	background: #fff;
	padding: 46px 32px;
	color:black;
	text-align: center;
}


.mfa-modal-description {
	margin-bottom: 20px;
}

.mfa-input-container {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin: 25px 0;
}

#mfaModal .mfa-input {
	width: 60px !important;
	height: 70px !important;
	text-align: center;
	font-size: 32px !important;
	line-height: 70px;
	border: 2px solid black !important;
	border-radius: 4px;
	padding:  0 !important;
	margin: 0;
}

#mfaModal .mfa-input.success {
	border-color: #4CAF50;
}

#mfaModal .mfa-input.error {

}


.mfa-modal-buttons {
	margin-top: 24px;
}

.mfa-button {
	border: none;
	cursor: pointer;
	background-color: #F58220;
	color: white;
	font-size: 12px;
	text-align: center;
	width: 100%;
	font-size: 12px;
	border: 0;
	font-weight: 700;
	height: 43px;
	line-height: 43px;
}

.mfa-submit-button {
	color: #fff;
}

.mfa-resend-button{
	color:black;
	background-color: white;
	border: 2px solid black;
}

/* Animation for MFA Submit Button */
@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.mfa-submit-button {
	color: #fff;
	opacity: 0; /* Default state */
	transform: scale(0.9); /* Default state */
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.mfa-submit-button[style*="display: block"] {
	animation: fadeInScale 0.5s ease forwards;
}

.mfa-modal-buttons .mfa-button:first-child{
	margin-bottom:10px;
}

/* MFA Modal Close Button */
.mfa-close-button {
	position: absolute;
	top: 45px;
	right: 32px;
	background: none;
	border: none;
	font-size: 20px;
	font-weight: bold;
	color: #000;
	cursor: pointer;
}

.mfa-close-button:hover {
	color: #ff0000;
}


.mfa-resend-button {
	cursor: pointer;
}

.mfa-button:hover {
	background-color: rgba(245, 130, 32, 0.75);
}


.mfa-modal-header {
	min-height: 80px;
}

.mfa-modal-header img {
	width: 40px;
	height: 40px;
}

.mfa-modal-title {
	margin-bottom: 15px;
	font-size: 32px;
	font-weight: 700;
	margin-top: 15px;
}

.mfa-text-wrapper {
	text-align: center;
	width: 100%;
	color: black;
}

.mfa-text-wrapper p {
	color:black;
	font-weight: 400;
	margin-top: 5px;
	font-size: 15px;
}

.mfa-text-wrapper h5 {
	color:black;
	font-weight: 700;
	margin: 0;
}


.mfa-notification-resend {
	text-align: center;
	font-weight: 700;
	font-size: 13px;
	color: #F58220;
	margin-top:12px
}

.mfa-notification-resend.upper{
	color: #FF5252;
	margin-top:-15px;
	margin-bottom:25px;
}
