/** Auth popup **/
.mp-popup {
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	display: none;
	z-index: 10001;
	position: fixed;
	min-width: 100vw;
	align-items: center;
	justify-content: center;
	background: rgba(88, 88, 88, 0.42);
}
.mp-popup.mp-popup--active {
	display: flex;
}
.mp-popup .mp-form-wrap {
	width: 500px;
    display: flex;
	position: relative;
    background: #FFF;
	padding: 20px 30px;
	border-radius: 4px;
	align-items: center;
    flex-direction: column;
    box-shadow: 1px 1px 30px -10px #080808;
}
.mp-popup .mp-form-wrap .mp-form {
	width: 100%;
}
.mp-popup .mp-form-wrap .mp-form__toggler-wrap {
	width: 100%;
	display: flex;
	line-height: 1;
	margin-bottom: 30px;
	justify-content: space-between;
}
.mp-form__toggler-wrap .mp-form__toggler {
	cursor: pointer;
	user-select: none;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: all 250ms linear;
}
.mp-form__toggler-wrap .mp-form__toggler:hover {
	border-bottom: 1px solid #8e24aa;
}
.mp-form__toggler.mp-form__toggler--active {
	border-bottom-color: #8e24aa;
}
.mp-form__toggle {
	width: 100%;
	display: block;
}
.mp-form__toggle.mp-form__toggle--hidden {
	display: none;
}
.mp-form__group {
	position: relative;
	margin-bottom: 10px;
	min-height: 30px;
}
.mp-form__group.mp-form__group--has-half {
	display: flex;
}
.mp-form__group--has-half .mp-from__group--half {
	position: relative;
	display: flex;
	width: 50%;
}
.mp-form__group--has-half .mp-from__group--half:nth-of-type(2) {
	margin-left: 10px;
}
.mp-form__group input {
	width: 100%;
}
.mp-form-wrap .mp-popup__close {
	right: 0;
	top: -40px;
	width: 35px;
    height: 35px;
	display: flex;
	font-size: 35px;
	cursor: pointer;
	position: absolute;
    align-items: center;
    justify-content: center;
	transition: all 250ms linear;
}
.mp-form-wrap .mp-popup__close:hover {
	background: #CCC;
	border-radius: 50%;
	color: rgba(0, 0, 0, 0.58);
}
