﻿/*
 *这是单独为hello mui准备的个性化css，可以覆盖标准mui的css定义；
 * 在实际项目开发时，建议为App单独写一个css文件，从而实现项目的自定义皮肤功能；
 * 
 * */
.mui-plus header.mui-bar {
	display: none;
}

.mui-plus .mui-bar-nav~.mui-content {
	padding: 0;
}

/*hm开头的表示仅为 Hello MUI示例定义*/
.hm-description {
	margin: .5em 0;
}

.hm-description>li {
	font-size: 14px;
	color: #8f8f94;
}


.captcha-display {
	width: 200px;
	height: 40px;
	background: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 38px;
	font-weight: bold;
	letter-spacing: 8px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	user-select: none;
	box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
	padding: 0 15px;
	margin-left: 10px;
}

.captcha-char {
	display: inline-block;
	min-width: 40px;
	text-align: center;
	animation: bounce 0.5s ease;
}

.message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 10px;
	font-weight: 500;
	display: none;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.success {
	background: #d4edda;
	color: #155724;
	display: block;
}

.error {
	background: #f8d7da;
	color: #721c24;
	display: block;
}

.hint {
	margin-top: 25px;
	color: #6c757d;
	font-size: 14px;
	line-height: 1.6;
	background: #f8f9fa;
	padding: 15px;
	border-radius: 10px;
}

.hint ul {
	list-style: none;
	padding: 0;
	margin: 10px 0 0 0;
}

.hint li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 25px;
}

.hint li:before {
	content: "•";
	color: #4a6cf7;
	font-weight: bold;
	position: absolute;
	left: 10px;
}