-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
53 lines (46 loc) · 824 Bytes
/
form.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
.form-container {
margin: 0 auto;
background-color: white;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 1.5rem;
}
form {
width: 100%;
margin-bottom: 32px;
}
form h2 {
color: black;
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.input-group {
display: flex;
margin-bottom: 1rem;
}
input,
textarea {
flex: 1;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 0.25rem;
font-family: "Ubuntu", sans-serif;
}
button {
background-color: #48bb78;
color: white;
font-weight: bold;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #38a169;
}
button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.4);
}