.wrapper {
    padding: 1rem 0.56rem;
    /* padding: 1.88rem 0.56rem; */
	position: relative;
}

.l-header {
    position: absolute;
    /* top: 0.56rem; */
    top: 0.24rem;
    left: 0.56rem;
    display: flex;
    align-items: center;
}

.l-header .back {
    width: 0.12rem;
    height: 0.24rem;
    margin-right: 0.24rem;
}

.l-header .txt {
    font-weight: 400;
    font-size: 0.4rem;
    color: #FFFFFF;
    line-height: 0.56rem;
}

.login-bg {
    position: absolute;
    left: 0;
    /* top: 0; */
    top: 0rem;
    width: 100%;
/*    object-fit: contain; */
    z-index: -1;
	height: 4.5rem;
}


.title {
    font-weight: 600;
    font-size: 0.68rem;
    color: #ffffff;
    line-height: 0.96rem;
    margin: 0.8rem auto 1.4rem auto;
    text-align: left;
	height: 2rem;
}

.input-label {
    font-weight: 400;
    font-size: 0.28rem;
    color: #23262F;
    line-height: 0.32rem;
}


.input-box {
    margin-top: 0.36rem;
    gap: 0rem;
    display: flex;
    flex-flow: column;
	position: relative;
}

.btn {
    margin-top: 0.54rem;
    width: 100%;
}

.wrapper .ez-input{
	background-color: transparent;
	padding: 0;
	border-bottom: 1px solid #D4D4D4;
	height: 0.8rem;
}

.wrapper .input-box span{
	position: absolute;
	font-size: 12px;
	right: 0;
	bottom: 0.4rem;
}
.wrapper .in{
	background-color: #ffffff;
	color: #000000;
	border: 1px solid #D5D5D5;
}

.remember-div{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 30px 0;
}

.custom-radio {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  cursor: pointer;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin-left: -7px;
  z-index: 99;
}

.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: black; /* 黑色背景 */
  border-radius: 0; /* 移除圆角变成正方形 */
}

/* 当单选按钮被选中时 */
.custom-radio input:checked ~ .radio-checkmark {
  background-color: black;
}

/* 创建选中时的白色对勾（可选） */
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .radio-checkmark:after {
  display: block;
}

.custom-radio .radio-checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wrapper .remember-me{
	font-size: 13px;
	margin-bottom: -18px;
	margin-left: 20px;
}