add login and register
Change-Id: I268de3c72015b588e84a9d7d14df8d434b614509
diff --git a/src/app/user/register/register.scss b/src/app/user/register/register.scss
new file mode 100644
index 0000000..9c9a77d
--- /dev/null
+++ b/src/app/user/register/register.scss
@@ -0,0 +1,53 @@
+//全局容器样式
+.register-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ //display: flex;
+ //flex-direction: column;
+ //justify-content: center;
+
+ .form-header {
+ //margin: auto;
+ display: flex;
+ justify-content: center;
+ font-size: 50px;
+ margin-bottom: 60px;
+ }
+
+ .form-field {
+ display: flex;
+ justify-content: center;
+ gap: 0.5rem;
+ margin-bottom: 50px;
+
+ .form-field-header {
+ width: 120px;
+ font-size: 30px;
+ color: rgba(63, 74, 73, 1);
+ margin-right: 50px;
+ }
+
+ input {
+ width: 400px;
+ padding: 0.75rem 1rem;
+ border-radius: 8px;
+ font-size: 1rem;
+ color: #2d3748;
+ }
+ }
+
+ .form-operation {
+ display: flex;
+ justify-content: center;
+ margin-top: 80px;
+
+ .form-operation-button {
+ width: 150px;
+ background: rgba(82, 102, 101, 1);
+ border: 1px solid rgba(82, 102, 101, 1);
+ border-radius: 20px;
+ margin-right: 25px;
+ }
+ }
+}
\ No newline at end of file