-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome_page.css
88 lines (75 loc) · 1.44 KB
/
welcome_page.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
max-width: 900px;
width: 100%;
}
.text-section {
max-width: 300px;
text-align: center;
margin-right: 40px;
}
.text-section h2 {
color: #e63946;
font-size: 28px;
margin-bottom: 15px;
}
.text-section p {
font-size: 14px;
color: #555;
margin-bottom: 30px;
}
.button-container {
display: flex;
gap: 10px;
}
.login-btn {
padding: 10px 20px;
background-color: #e63946;
color: white;
border: none;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
}
.register-btn {
padding: 10px 20px;
background-color: white;
color: #e63946;
border: 2px solid #e63946;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
}
.login-btn:hover {
background-color: #d32f2f;
}
.register-btn:hover {
background-color: #e63946;
color: white;
}
.image-section {
flex-shrink: 0;
}
.illustration {
width: 300px;
height:auto;
}