.ir-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0,0,0,0.6);
	padding: 20px;
}

.ir-modal-content {
	background: #fff;
	border-radius: 10px;
	max-width: 480px;
	margin: 60px auto;
	padding: 0;
	box-shadow: 0 5px 25px rgba(0,0,0,0.2);
	position: relative;
	animation: fadeIn 0.3s ease;
}

.ir-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #0000001A;
}

.ir-logo {
	height: 20px;
}

.ir-logo img {
	height: 20px;
	width: auto;
	display: block;
}

.ir-site-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.ir-close {
	background: none;
	border: none;
	font-size: 28px;
	color: #000;
	cursor: pointer;
	line-height: 1;
	padding:0;
}

.ir-modal-body {
	padding: 20px;
}

.ir-modal-body h3 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 25px;
    font-weight: 500 !important;
}

.ir-modal-body label {
	display: block;
	font-weight: 400;
	margin-bottom: 7px;
	color: #777;
}

.ir-modal-body input {
	width: 100%;
	padding: 10px 12px;
	border-radius: 5px;
	border: 1px solid #0000001A;
	margin-bottom: 15px;
}

.ir-modal-footer {
	border-top: 1px solid #0000001A;
	padding: 15px;
	text-align: center;
	border-radius: 0 0 10px 10px;
}

button[type="submit"].ir-button {
	background-color: #0073e6;
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
    padding: 12px 30px;
    border: none;
    line-height: 18px;
}

button[type="submit"].ir-button:hover {
	background-color: #005bb5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ir-error {
	font-size: 13px;
	color: red;
}

.ir-success {
	font-size: 13px;
	color: green;
}