-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.css
44 lines (44 loc) · 803 Bytes
/
signup.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
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #f8f9fa;
}
.container {
max-width: 400px;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #d9534f;
}
.form-group {
margin-bottom: 15px;
}
.form-group input, .form-group select {
width: 100%;
max-width: 350px;
padding: 10px;
font-size: 1em;
}
.form-group select{
max-width: 370px;
}
.btn {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 1em;
color: #fff;
background-color: #d9534f;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
.btn:hover {
background-color: #c9302c;
}