-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesSign.css
106 lines (93 loc) · 1.77 KB
/
stylesSign.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: url('assets/background.jpg') ;
background-size: cover;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.signup-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 90vw;
max-width: 1200px;
height: 80vh;
background-color: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.signup-left {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 40px;
border-right: 1px solid #ccc;
}
.signup-box {
text-align: left;
width: 100%;
max-width: 350px;
}
.signup-box h2 {
font-size: 32px;
margin-bottom: 15px;
color: #333;
}
.signup-box p {
margin-bottom: 25px;
color: #666;
font-size: 14px;
}
.signup-box form input {
width: 100%;
padding: 12px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
}
.signup-box form button {
width: 100%;
padding: 12px;
background-color: #000;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.signup-box form button:hover {
background-color: #333;
}
.signup-box .login-text {
font-size: 14px;
text-align: center;
}
.signup-box .login-text a {
color: black;
text-decoration: underline;
cursor: pointer;
}
.signup-right {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #fff;
padding: 20px;
}
.illustration {
max-width: 80%;
height: auto;
}