-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactForm.module.css
More file actions
65 lines (56 loc) · 1021 Bytes
/
ContactForm.module.css
File metadata and controls
65 lines (56 loc) · 1021 Bytes
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
.section {
padding: 120px 0 80px;
position: relative;
}
.form {
max-width: 600px;
margin: 0 auto;
padding: 0 24px;
display: flex;
flex-direction: column;
gap: 20px;
}
.row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.field {
display: flex;
flex-direction: column;
gap: 6px;
}
.label {
font-family: var(--font-mono);
font-size: 0.65rem;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--text-secondary);
}
.input {
background: var(--bg-card);
border: 1px solid var(--border-dim);
border-radius: var(--radius-sm);
padding: 14px 16px;
font-family: var(--font-body);
font-size: 0.9rem;
color: var(--text-primary);
outline: none;
transition: all 0.3s ease;
}
.input:focus {
border-color: var(--cyan);
box-shadow: 0 0 20px rgba(0, 159, 227, 0.1);
}
.input::placeholder {
color: var(--text-dim);
}
.textarea {
resize: vertical;
min-height: 120px;
}
@media (max-width: 600px) {
.row {
grid-template-columns: 1fr;
}
}