|
.container.data-v-8c973bde {
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
height: 100vh;
|
background: linear-gradient(to bottom right, #e6f7ff, #ffffff);
|
padding: 40rpx;
|
box-sizing: border-box;
|
}
|
.form-box.data-v-8c973bde {
|
width: 100%;
|
max-width: 600rpx;
|
background-color: #fff;
|
padding: 60rpx 40rpx;
|
border-radius: 24rpx;
|
box-shadow: 0 12rpx 32rpx rgba(0, 0, 0, 0.1);
|
}
|
.form-title.data-v-8c973bde {
|
text-align: center;
|
font-size: 40rpx;
|
font-weight: bold;
|
margin-bottom: 40rpx;
|
color: #333;
|
}
|
.input.data-v-8c973bde {
|
width: 100%;
|
padding: 40rpx;
|
margin-bottom: 32rpx;
|
border: 1rpx solid #ccc;
|
border-radius: 16rpx;
|
font-size: 30rpx;
|
background-color: #f9f9f9;
|
box-sizing: border-box;
|
transition: all 0.3s ease;
|
}
|
.input.data-v-8c973bde:focus {
|
border-color: #1890ff;
|
background-color: #fff;
|
outline: none;
|
}
|
.register-btn.data-v-8c973bde {
|
width: 100%;
|
padding: 20rpx 0;
|
font-size: 32rpx;
|
color: #fff;
|
background: linear-gradient(to right, #36d1dc, #5b86e5);
|
border: none;
|
border-radius: 50rpx;
|
box-shadow: 0 8rpx 20rpx rgba(91, 134, 229, 0.3);
|
transition: all 0.2s ease-in-out;
|
}
|
.register-btn.data-v-8c973bde:active {
|
transform: scale(0.97);
|
opacity: 0.9;
|
}
|