2026-01-24 02:11:19 +05:30
|
|
|
/* ================= HEADING ================= */
|
|
|
|
|
.container h2 {
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #1f2d3d;
|
2025-12-29 15:22:15 +05:30
|
|
|
margin-bottom: 25px;
|
2026-01-24 02:11:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= FORM ================= */
|
|
|
|
|
form {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= FORM ELEMENTS ================= */
|
|
|
|
|
label {
|
|
|
|
|
font-weight: 600;
|
2026-01-24 02:11:19 +05:30
|
|
|
margin-bottom: 6px;
|
2025-12-29 15:22:15 +05:30
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
width: 100%;
|
2026-01-24 02:11:19 +05:30
|
|
|
max-width: 320px;
|
|
|
|
|
padding: 12px 14px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
border: 1px solid #ccc;
|
2025-12-29 15:22:15 +05:30
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select:focus {
|
|
|
|
|
border-color: #007bff;
|
|
|
|
|
outline: none;
|
2026-01-24 02:11:19 +05:30
|
|
|
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.18);
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ================= BUTTON ================= */
|
2025-12-29 15:22:15 +05:30
|
|
|
button {
|
2026-01-24 02:11:19 +05:30
|
|
|
margin-top: 22px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 320px;
|
|
|
|
|
padding: 13px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
2025-12-29 15:22:15 +05:30
|
|
|
background-color: #007bff;
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
2026-01-24 02:11:19 +05:30
|
|
|
border-radius: 8px;
|
2025-12-29 15:22:15 +05:30
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
|
background-color: #0069d9;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ================= LAPTOP ================= */
|
|
|
|
|
@media (max-width: 1400px) {
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 620px;
|
|
|
|
|
padding: 40px 48px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= TABLET ================= */
|
|
|
|
|
@media (max-width: 992px) {
|
|
|
|
|
body {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-29 15:22:15 +05:30
|
|
|
.main {
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
width: 100%;
|
2026-01-24 02:11:19 +05:30
|
|
|
height: auto;
|
|
|
|
|
padding: 40px 20px;
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
.container {
|
|
|
|
|
max-width: 560px;
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
}
|
2026-01-24 02:11:19 +05:30
|
|
|
|
|
|
|
|
/* ================= MOBILE ================= */
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
body {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main {
|
|
|
|
|
margin-top: 70px;
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: 20px 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
padding: 28px 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container h2 {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select,
|
|
|
|
|
button {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|