-
Notifications
You must be signed in to change notification settings - Fork 2
/
followup.css
71 lines (61 loc) · 1.17 KB
/
followup.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
/* General Styles */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #1e1e2f;
color: #d3d4d9;
}
/* Form Container */
.form-container {
width: 90%;
max-width: 500px;
background-color: #2a2d3b;
padding: 2rem;
border-radius: 12px;
box-shadow: 0px 0px 20px rgba(50, 50, 70, 0.6);
text-align: center;
}
.form-container h1 {
color: #e6e6fa;
font-size: 2.2rem;
margin-bottom: 0.5rem;
}
.form-container p {
color: #a6a8b4;
font-size: 1rem;
margin-bottom: 1.5rem;
}
form {
display: flex;
flex-direction: column;
gap: 1rem;
}
label {
text-align: left;
font-weight: bold;
color: #a6a8b4;
}
input, textarea, button {
padding: 0.8rem;
border: none;
border-radius: 8px;
background-color: #3a3d4f;
color: #d3d4d9;
}
input:focus, textarea:focus {
outline: 2px solid #7b59c4;
}
button {
background-color: #7b59c4;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #6a4db3;
}