.login-pop {
	position: fixed;
	z-index: 888;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.login-pop .login-content {
	width: 96%;
	position: fixed;
	z-index: 889;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 10rem;
}

.login-pop .login-content .close {
	width: 40rem;
	height: 40rem;
	margin: 10rem 10rem 0 auto;
	color: #666;
	cursor: pointer;
}

.login-pop .login-content .close-t {
	cursor: pointer;
	margin: 15rem 15rem 0 auto;
	color: #666;
}

.login-pop .title-container {
	width: 100%;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 20rem 20rem;
	font-size: 26rem;
	font-weight: 700;
	box-sizing: border-box;
}

.login-pop .input-container{
	display: flex;
	align-items: center;
	height: 60rem;
	width: 100%;
	padding: 0 16rem 10rem;
	box-sizing: border-box;
}

.login-pop .login-input:focus{
        border-color:#D22928;
        outline: none;
    }

.login-pop .login-input {
	padding: 10rem;
	flex: 1;
	height: 25rem;
	background: #f8f8f8;
	border: 1rem solid #eee;
	border-radius: 5rem;
	font-size: 17rem;
}

.login-pop .input-container .send-code{
	width: 150rem;
	height: 40rem;
	margin-left: 15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #D22928;
	border: 1rem solid #D22928;
	border-radius: 5rem;
	font-size: 17rem;
	white-space: nowrap;
}

.login-pop .send-iput {
	width: 180rem;
}

.login-pop .tc-btn{
    background: linear-gradient(90deg,#D55A32,#D22928);
    margin: 16rem;
    position: relative;
    left: 0;
    right: 0;
    height: 55rem;
    border-radius: 5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}



@media (min-width:992px) {
	.login-pop {
		width: 750px;
	}

	.login-pop .login-content {
		width: 700px;
		border-radius: 10px;
	}
	
	.login-pop .tc-btn{
	    font-size: 38px;
	}
}

