.show-error {
	color:red;
}

.login-body {
	max-width: 500px !important;
}

.copy-text {
	position: relative;
	display: flex;
}
.copy-text input.text {
	font-size: 18px;
	border: none;
	outline: none;
	font-weight: bold;
	width: 170px;
}
.copy-text button {
	background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
	margin-top: -10px;
}

.copy-text button:before {
	content: "Copied";
	position: absolute;
	color: gray;
	font-size: 14px;
	margin-left: 30px;
	display: none;
}
.copy-text button:after {
	content: "";
	position: absolute;
	top: -20px;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
	display: block;
}
.copy-area {
	font-size: 18px;
	font-weight: bold;
}
.copy-box {
	outline: none;
}
.copy-box-error {
	vertical-align : middle;
	margin-right : 5px;
	width : 13px;
	height : 13px;
	appearance : none;
	border : 2px solid rgb(176, 0, 32);
}