-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (88 loc) · 1.75 KB
/
style.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
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #a8c0ff, #3f2b96);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background: #ffffff;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 450px;
animation: fadeIn 1.2s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 1.5rem;
font-size: 2.2rem;
font-weight: 700;
}
form {
display: flex;
flex-direction: column;
}
label {
margin-bottom: 0.5rem;
color: #34495e;
font-weight: 600;
}
input, textarea {
padding: 0.75rem;
margin-bottom: 1.2rem;
border: 2px solid #bdc3c7;
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s;
}
input:focus, textarea:focus {
border-color: #2980b9;
box-shadow: 0 0 8px rgba(41, 128, 185, 0.3);
outline: none;
}
button {
background: linear-gradient(135deg, #3498db, #2ecc71);
color: white;
padding: 0.75rem;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s, transform 0.2s;
}
button:hover {
background: linear-gradient(135deg, #2980b9, #27ae60);
transform: translateY(-2px);
}
p {
text-align: center;
margin-top: 1.5rem;
color: #7f8c8d;
font-size: 0.9rem;
}
a {
color: #3498db;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
a:hover {
color: #2980b9;
text-decoration: underline;
}