-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (86 loc) · 1.68 KB
/
styles.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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
padding: 3rem;
text-align: center;
max-width: 450px;
width: 100%;
}
h1 {
color: #4a0e4e;
margin-bottom: 0.75rem;
font-weight: 600;
}
h2 {
color: #6a1a6e;
margin-bottom: 1.25rem;
font-size: 1.3rem;
font-weight: 500;
}
p {
color: #555;
margin-bottom: 2rem;
line-height: 1.6;
}
form {
display: flex;
flex-direction: column;
}
input[type="text"],
input[type="email"] {
padding: 1rem;
margin-bottom: 1.25rem;
border: 1px solid #e0e0e0;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus {
outline: none;
border-color: #4a0e4e;
box-shadow: 0 0 0 3px rgba(74, 14, 78, 0.1);
}
button {
font-size: 1.1rem;
font-weight: 500;
background-color: #4a0e4e;
color: #ffffff;
border: none;
padding: 1rem 1.5rem;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
text-decoration: none;
}
button:hover {
background-color: #6a1a6e;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(106, 26, 110, 0.2);
}
button:active {
transform: translateY(0);
}
#thank-you-section {
text-align: center;
}
#return-home {
margin-top: 1rem;
}
footer {
margin-top: 2.5rem;
font-size: 0.9rem;
color: #888;
}