You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
900 B
64 lines
900 B
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
padding-top: 25%;
|
|
}
|
|
|
|
.login-form {
|
|
width: 650rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.input-group {
|
|
margin-bottom: 15rpx;
|
|
}
|
|
|
|
.label {
|
|
margin-bottom: 5rpx;
|
|
}
|
|
|
|
.input {
|
|
width: 100%;
|
|
padding: 10rpx;
|
|
border: 1rpx solid #ccc;
|
|
border-radius: 4rpx;
|
|
}
|
|
|
|
.checkbox-group {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 30rpx;
|
|
font-size: 27rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.checkbox {
|
|
margin-right: 2rpx;
|
|
transform: scale(0.65,0.65);
|
|
}
|
|
|
|
.login-button {
|
|
width: 100%;
|
|
background-color: #2563EB;
|
|
color: white;
|
|
padding: 10rpx;
|
|
margin-bottom: 50rpx;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
max-width: 400rpx;
|
|
margin-left: 20%;
|
|
color: #2563EB;
|
|
} |