-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (124 loc) · 2.22 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
:root {
--color1: #f0287c;
--color2: #f5963d;
--text-dark: #1b1b1e;
--text-light: #f6f7fc;
--background: #e8ebf7;
--error: #e61414;
--shadow: 240, 40, 120;
}
* {
box-sizing: border-box;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: 400;
}
#app {
display: flex;
height: 600px;
width: 1024px;
overflow: hidden;
border-radius: 0 64px 0 64px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: 23px 19px 39px -30px rgba(var(--shadow), 0.5);
}
h1 {
text-align: center;
font-weight: 900;
font-size: 30px;
}
.registration-form {
display: flex;
flex: 1;
}
.welcome-box {
display: flex;
flex: 1;
text-align: justify;
font-size: 18px;
background: linear-gradient(180deg, var(--color2) 0%, var(--color1) 100%);
justify-content: center;
align-items: center;
color: var(--text-light);
}
.left-box {
padding: 64px;
}
.form-container {
display: flex;
flex: 1.5;
justify-content: center;
background: var(--background);
color: var(--text-dark);
}
.form-box {
width: 100%;
padding: 64px;
overflow-y: auto;
}
#dynamic-form {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 2rem;
}
#form-wrapper {
width: 100%;
}
.description {
margin: 1rem 0;
}
.description > h1 {
text-align: left;
font-weight: 900;
font-size: 30px;
}
.section {
margin: 2rem 0;
font-size: 18px;
}
input[type='text'] {
margin: 0.5rem 0;
width: 100%;
height: 2rem;
border-radius: 1rem;
border: 1px solid var(--color1);
padding: 0 1rem;
}
input[type='text']:focus {
box-shadow: 0px 0px 25px rgba(240, 40, 120, 0.3);
outline: none;
}
#register-button {
margin-top: 1rem;
width: 33%;
padding: 0.6rem 1rem;
font-size: 1rem;
background: linear-gradient(90deg, var(--color1) 0%, var(--color2) 100%);
color: var(--text-light);
border-radius: 1.5rem;
border: none;
cursor: pointer;
}
#register-button:hover {
box-shadow: 0px 0px 5px rgba(240, 40, 120, 0.5);
}
.checkbox-box {
display: flex;
align-items: center;
}
.product-row {
display: flex;
align-items: center;
justify-content: space-between;
}
input[type='checkbox'] {
height: 2rem;
width: 1.5rem;
}
.price-box {
font-weight: 900;
}