-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprj1.css
More file actions
136 lines (116 loc) · 2.22 KB
/
prj1.css
File metadata and controls
136 lines (116 loc) · 2.22 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
body {
background-image: url(image.jpg);
position: relative;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
color: #333;
overflow-x: hidden;
background-size: cover;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("bbc523b6-a858-4eef-8ebf-259ec97e1e2f.jpg") no-repeat center center/cover;
filter: brightness(0.65);
z-index: -1;
}
.apply_box {
width: 100%;
max-width: 600px;
padding: 40px 50px;
background: rgba(255, 255, 255, 0.95);
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
animation: fadeIn 0.8s ease-in-out;
}
.apply_box h1 {
text-align: center;
font-size: 28px;
font-weight: bold;
margin-bottom: 5px;
color: #2c3e50;
}
.title_small {
display: block;
font-size: 18px;
font-weight: 500;
color: #444;
margin-top: 8px;
text-align: center;
}
input,
select,
textarea {
width: 100%;
padding: 8px 10px;
margin-top: 10px;
border: 1.5px solid #bbb;
border-radius: 6px;
font-size: 14px;
background: #fff;
transition: all 0.3s ease-in-out;
}
input:focus,
select:focus,
textarea:focus {
border-color: #ff9800;
background: #fff;
outline: none;
box-shadow: 0 0 6px rgba(255, 152, 0, 0.5);
}
button {
background: linear-gradient(135deg, #ff9800, #ff5722);
border: none;
padding: 12px 28px;
border-radius: 8px;
color: white;
font-size: 15px;
font-weight: bold;
cursor: pointer;
margin-top: 15px;
transition: 0.3s ease-in-out;
}
button:hover {
background: linear-gradient(135deg, #ff5722, #ff9800);
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
footer {
position: static ;
bottom: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.6);
color: white;
text-align: center;
padding: 15px 50px;
font-size: 14px;
margin-top: 30px;
}
#time {
font-weight: bold;
color: #ffcc00;
}
.checkbox {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
font-size: 14px;
line-height: 1.4;
}
.checkbox input {
width: 18px;
height: 18px;
margin: 0;
cursor: pointer;
}