-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
32 lines (30 loc) · 697 Bytes
/
styles.css
File metadata and controls
32 lines (30 loc) · 697 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
.form-container {
width: 100%;
max-width: 800px;
padding: 3rem 2.5rem;
background: white;
border-radius: 1rem;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
max-height: 80vh;
min-height: 700px;
display: flex;
flex-direction: column;
justify-content: center;
font-size: 1.8rem;
margin: 0 auto;
}
/* For smaller screens */
@media (max-width: 768px) {
.form-container {
width: 90%;
max-width: 100%;
max-height: 1200px;
min-height: 800px;
padding: 2rem 1.5rem;
font-size: 3.2 rem;
}
input, textarea {
font-size: 6.2rem;
padding: 1rem;
}
}