-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (93 loc) · 1.82 KB
/
style.css
File metadata and controls
104 lines (93 loc) · 1.82 KB
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
body {
font-family: Arial, sans-serif;
background-color: #9c9c9c;
margin: 0;
height: 100vh;
padding: 20px;
background: linear-gradient(135deg, #3a7bd5, #3ddad7, #8e54e9);
background-size: 200% 200%;
animation: gradientMove 10s ease infinite;
}
@keyframes gradientMove {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container {
max-width: 600px;
margin: auto;
background: rgb(0, 213, 255);
padding: 30px;
border-radius: 40px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.box {
background-color: #f4f4f4;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
justify-content: center;
text-align: center;
display: flex;
flex-direction: column;
}
h2 {
text-align: center;
color: #333;
}
label {
display: flex;
font-weight: bold;
padding: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
width: 100%;
padding: 10px;
margin-top: 10px;
border: 1px solid #0084ff;
border-radius: 100px;
box-sizing: border-box;
}
.button-register {
background-color: #0040ff;
color: rgb(255, 255, 255);
padding: 15px 15px;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 15px;
margin: 20px 5px;
width: 100%;
display: center;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
padding: 10px 10px;
}
.checkbox {
display: flex;
justify-content: left;
align-items: center;
margin-top: 5px;
}
.Radio {
justify-content: center;
align-items: center;
margin-top: 5px;
text-align: center;
}
.help {
text-align: center;
margin-top: 20px;
}