.form-group {
    text-align: left;
}

label {
    margin-bottom: 5px;
}

.copy-text {
	position: relative;
	padding: 10px;
	background: #eee;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
}
.copy-text input.text {
	padding: 10px;
	font-size: 18px;
	color: #555;
	border: none;
	outline: none;
    border-radius: 10px;
    width: 100%;
    background-color: #efefef;

}
.copy-text button {
	padding: 10px;
	background: #5784f5;
	color: #fff;
	font-size: 18px;
	border: none;
	outline: none;
	border-radius: 10px;
	cursor: pointer;
    margin-left: 10px;
}

.copy-text button:active {
	background: #809ce2;
}
.copy-text button:before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background: #5c81dc;
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button:after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background: #5c81dc;
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button:before,
.copy-text.active button:after {
	display: block;
}

#profileDetails {
	height: 100%;

}

#profilePic {
	height: 30px;
	margin-right: 10px;
}

#btn-login, #btn-logout {
	margin-right: 10px;
	margin-left: 10px;
	background-color: transparent;
	border: 0;
}