2026-01-24 02:11:19 +05:30
|
|
|
/* ================= RESET ================= */
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= BODY ================= */
|
2025-12-29 15:22:15 +05:30
|
|
|
body {
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
|
|
|
background-color: #f4f7f9;
|
2026-01-24 02:11:19 +05:30
|
|
|
height: 100vh;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* no scroll desktop */
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ================= LINKS ================= */
|
2025-12-29 15:22:15 +05:30
|
|
|
a {
|
|
|
|
|
text-decoration: none !important;
|
|
|
|
|
color: #007bff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= NAVBAR ================= */
|
|
|
|
|
.navbar {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 60px;
|
|
|
|
|
background-color: #007bff;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
color: white;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-left {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-logo {
|
2026-01-24 02:11:19 +05:30
|
|
|
height: 70px;
|
2025-12-29 15:22:15 +05:30
|
|
|
filter: brightness(0) invert(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toggle-btn {
|
|
|
|
|
font-size: 26px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= SIDEBAR ================= */
|
|
|
|
|
.sidebar {
|
|
|
|
|
width: 250px;
|
|
|
|
|
background: white;
|
|
|
|
|
height: calc(100vh - 60px);
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 60px;
|
|
|
|
|
left: 0;
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
border-right: 1px solid #d6d6d6;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar.hide {
|
|
|
|
|
left: -250px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-items {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-btn {
|
|
|
|
|
padding: 14px 20px;
|
2026-01-24 02:11:19 +05:30
|
|
|
font-size: 16px;
|
2025-12-29 15:22:15 +05:30
|
|
|
color: #007bff;
|
2026-01-24 02:11:19 +05:30
|
|
|
font-weight: 600;
|
2025-12-29 15:22:15 +05:30
|
|
|
cursor: pointer;
|
|
|
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-btn:hover {
|
|
|
|
|
background: #e9f3ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.submenu {
|
|
|
|
|
display: none;
|
|
|
|
|
background: #f4faff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.submenu a {
|
|
|
|
|
padding: 12px 35px;
|
2026-01-24 02:11:19 +05:30
|
|
|
display: block;
|
2025-12-29 15:22:15 +05:30
|
|
|
color: #0056b3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ================= MAIN ================= */
|
|
|
|
|
.main {
|
2026-01-24 02:11:19 +05:30
|
|
|
margin-left: 250px;
|
|
|
|
|
margin-top: 60px;
|
|
|
|
|
width: calc(100% - 250px);
|
|
|
|
|
height: calc(100vh - 60px);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
/* ✅ vertical center */
|
|
|
|
|
justify-content: center;
|
|
|
|
|
/* ✅ horizontal center */
|
2025-12-29 15:22:15 +05:30
|
|
|
padding: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ================= CONTAINER ================= */
|
2025-12-29 15:22:15 +05:30
|
|
|
.container {
|
2026-01-24 02:11:19 +05:30
|
|
|
width: 100%;
|
|
|
|
|
max-width: 680px;
|
|
|
|
|
/* 🔥 laptop & desktop size */
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
padding: 45px 55px;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
|
2025-12-29 15:22:15 +05:30
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
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%;
|
|
|
|
|
}
|
|
|
|
|
}
|