-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (89 loc) · 1.61 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (89 loc) · 1.61 KB
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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background: white;
padding: 40px 10px; /* important change */
}
.container {
width: 100%;
max-width: 600px;
margin: auto; /* center horizontally */
}
.form-box {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.form-box h1 {
text-align: center;
margin-bottom: 5px;
}
.college, .place {
text-align: center;
color: gray;
font-size: 14px;
margin: 2px 0;
}
.input-group {
margin-top: 15px;
display: flex;
flex-direction: column;
}
.input-group label {
font-weight: bold;
margin-bottom: 5px;
}
.input-group input,
.input-group select,
.input-group textarea {
padding: 10px;
border-radius: 6px;
border: 1px solid #ccc;
font-size: 14px;
transition: 0.3s;
width: 100%;
}
.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
border-color: #4e73df;
outline: none;
box-shadow: 0 0 5px rgba(78,115,223,0.4);
}
textarea {
resize: none;
height: 70px;
}
.radio-group {
display: flex;
gap: 20px;
margin-top: 5px;
}
.btn-group {
margin-top: 20px;
display: flex;
justify-content: space-between;
}
button {
padding: 10px 20px;
border-radius: 6px;
border: none;
cursor: pointer;
font-weight: bold;
transition: 0.3s;
}
.submit-btn {
background: #4e73df;
color: white;
}
.submit-btn:hover {
background: #2e59d9;
}
.reset-btn {
background: #e74a3b;
color: white;
}
.reset-btn:hover {
background: #c0392b;
}