|
@@ -0,0 +1,156 @@
|
|
|
|
+* {
|
|
|
|
+ margin: 0;
|
|
|
|
+ padding: 0;
|
|
|
|
+ list-style-type: none;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ text-decoration: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+div {}
|
|
|
|
+
|
|
|
|
+.biggestBox {
|
|
|
|
+ height: 100vh;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.log-Page {
|
|
|
|
+ border: 1px solid rgb(218, 220, 224);
|
|
|
|
+ min-width: 448px;
|
|
|
|
+ height: auto;
|
|
|
|
+ padding: 48px 40px 36px 40px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.log-Page>h1:nth-child(1) {
|
|
|
|
+ color: rgb(254, 152, 2);
|
|
|
|
+ font-size: 25px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ text-align: center;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.log-Page>h1:nth-child(2) {
|
|
|
|
+ text-align: center;
|
|
|
|
+ color: #202124;
|
|
|
|
+ padding-bottom: 0;
|
|
|
|
+ padding-top: 16px;
|
|
|
|
+ font-family: 'Google Sans', 'Noto Sans Myanmar UI', arial, sans-serif;
|
|
|
|
+ font-size: 24px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ line-height: 1.3333;
|
|
|
|
+ margin-bottom: 0;
|
|
|
|
+ margin-top: 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.keepOn {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ color: #202124;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ letter-spacing: 0.1px;
|
|
|
|
+ line-height: 1.5;
|
|
|
|
+ padding-bottom: 0;
|
|
|
|
+ padding-top: 8px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.inputStuff {
|
|
|
|
+ padding-top: 24px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.input-email {
|
|
|
|
+ padding-top: 8px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.input-email>input {
|
|
|
|
+ width: 100%;
|
|
|
|
+ padding: 13px 15px;
|
|
|
|
+ height: 54px;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ color: #202124;
|
|
|
|
+ font-size: 17px;
|
|
|
|
+ margin: 1px 1px 0 1px;
|
|
|
|
+ z-index: 1;
|
|
|
|
+ border: 1px solid #ccc;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.input-email div {
|
|
|
|
+ padding: 9px 0px 3px 0px;
|
|
|
|
+ color: rgb(254, 152, 2);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.password {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.input-password {
|
|
|
|
+ padding-top: 30px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.input-password>input {
|
|
|
|
+ width: 100%;
|
|
|
|
+ padding: 13px 15px;
|
|
|
|
+ height: 54px;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ color: #202124;
|
|
|
|
+ font-size: 17px;
|
|
|
|
+ margin: 1px 1px 0 1px;
|
|
|
|
+ z-index: 1;
|
|
|
|
+ border: 1px solid #ccc;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.input-password div:nth-of-type(2) {
|
|
|
|
+ padding: 10px 0px 3px 0px;
|
|
|
|
+ color: rgb(254, 152, 2);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.checkPassword {
|
|
|
|
+ position: relative;
|
|
|
|
+ padding-top: 10px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.checkPassword input {
|
|
|
|
+ position: relative;
|
|
|
|
+ top: 3.5px;
|
|
|
|
+ width: 18px;
|
|
|
|
+ height: 18px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.checkPassword p {
|
|
|
|
+ display: inline-block;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.lastBox {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ display: flex;
|
|
|
|
+ margin-top: 40px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.register {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ width: calc(50% - 1px);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.register>div {
|
|
|
|
+ height: 14px;
|
|
|
|
+ color: rgb(254, 152, 2);
|
|
|
|
+ padding: 0 8px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.logConfirm {
|
|
|
|
+ width: calc(50% - 1px);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.logConfirm>div {
|
|
|
|
+ width: 90px;
|
|
|
|
+ height: 48px;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ align-items: center;
|
|
|
|
+ float: right;
|
|
|
|
+ background-color: rgb(254, 152, 2);
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ color: white;
|
|
|
|
+}
|