-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
120 lines (105 loc) · 2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #fcb09a, #f8d7b7);
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
text-align: center;
font-size: 30px;
font-weight: bold;
color: #333;
margin-top: 20px;
}
.form-container {
max-width: 650px;
width: 90%;
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}
.form-header {
text-align: center;
margin-bottom: 15px;
}
h3 {
font-size: 22px;
font-weight: bold;
border-bottom: 2px solid #007bff;
display: inline-block;
padding-bottom: 5px;
color: #333;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
font-size: 16px;
font-weight: bold;
margin-bottom: 5px;
color: #555;
}
.form-group input,
.form-group select {
width: 100%;
padding: 12px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 6px;
transition: 0.3s ease;
}
.form-group input:focus,
.form-group select:focus {
border-color: #007bff;
outline: none;
box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}
.submit-button {
text-align: center;
margin-top: 20px;
}
.submit-button button {
background: #007bff;
color: white;
font-size: 18px;
padding: 12px 20px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: 0.3s ease;
}
.submit-button button:hover {
background: #0056b3;
transform: scale(1.05);
}
.photo-upload {
text-align: center;
margin-bottom: 15px;
}
.photo-upload img {
width: 120px;
height: 120px;
border-radius: 10px;
object-fit: cover;
border: 2px solid #007bff;
}
.footer {
text-align: center;
font-size: 16px;
padding: 10px;
background: #333;
color: white;
width: 100%;
margin-top: 20px;
}
@media (max-width: 768px) {
.form-container {
width: 95%;
}
}