forgeplus-react/src/modules/loginRegister/LoginRegisterPageNew.scss

136 lines
3.0 KiB
SCSS

@import url(./font/font.css);
.loginRegister{
height: 100vh;
width: 100vw;
background-image: url(./img/bg1.png);
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
align-items: center;
justify-content: center;
font-family: alibaba;
}
.clear{
clear: both;
}
.login_register_right {
width: 1200px;
height: 705px;
background:#ffffff;
box-shadow:0px 0px 20px rgba(37, 106, 206, 0.14);
background-image: url(./img/bglogin.png);
background-repeat: no-repeat;
background-size: 50% 100%;
.right_cont {
width: 50%;
margin-left: auto;
display: flex;
flex-direction: column;
padding: 105px 75px 113px 75px;
.login_register_head {
font-family: alibaba-medium;
color: #283444;
font-size: 28px;
.head_blue {
font-size: 24px;
color: #0d5ef8;
}
span {
font-family: alibaba;
}
}
.account {
.input_icon::before {
transform: translate( 50%, -50%);
position: absolute;
content: "";
left: 0;
top: 50%;
width: 22px;
height: 22px;
background-image: url(./img/icon1.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
&:hover {
.input_icon::before {
background-image: url(./img/icon2.png);
}
}
}
.psd {
.input_icon::before {
transform: translate( 50%, -50%);
position: absolute;
content: "";
left: 0;
top: 50%;
width: 22px;
height: 22px;
background-image: url(./img/icon3.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
&:hover {
.input_icon::before {
background-image: url(./img/icon4.png);
}
}
}
.input_icon {
margin-left: 50px;
width: 0px;
height: 30px;
border: 1px solid;
border-color: rgba(20, 49, 179, 0.12);
&::before {
transform: translate( 50%, -50%);
position: absolute;
content: "";
left: 0;
top: 50%;
width: 22px;
height: 22px;
background-image: url(./img/icon1.png);
background-repeat: no-repeat;
background-size: 100% 100%;
}
}
.ant-input{
width: 450px;
height: 48px;
border: 1px solid;
border-color: #9eaacb;
border-radius: 4px;
background: #FFFFFF !important;
color: #283444;
padding-left: 80px;
&:hover{
background: rgba(0, 88, 255, 0.03);
border-color: #0d5ef8;
}
}
.login_register_cofBut {
width: 450px;
height: 56px;
background: #0d5ef8;
border-radius: 10px;
color: #ffffff;
font-size: 16px;
}
.ant-form-item {
margin-bottom: 40px;
}
.link_span {
display: flex;
align-items: center;
justify-content: center;
margin-top: 10px;
a {
color: #0d5ef8;
}
}
}
}