2026-01-24 02:11:19 +05:30
|
|
|
/* ===== RESET ===== */
|
2025-12-29 15:22:15 +05:30
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
2026-01-24 02:11:19 +05:30
|
|
|
font-family: "Segoe UI", Arial, sans-serif;
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ===== BODY ===== */
|
2025-12-29 15:22:15 +05:30
|
|
|
body {
|
2026-01-24 02:11:19 +05:30
|
|
|
background-color: #f4f7f6;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* NO SCROLL */
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ===== MAIN AREA (NAVBAR ALREADY EXISTS) ===== */
|
2025-12-29 15:22:15 +05:30
|
|
|
.main {
|
2026-01-24 02:11:19 +05:30
|
|
|
margin-top: 70px;
|
|
|
|
|
/* height of navbar */
|
|
|
|
|
height: calc(100vh - 70px);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
/* LEFT */
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
/* TOP */
|
|
|
|
|
padding: 20px;
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ===== FORM CONTAINER ===== */
|
2025-12-29 15:22:15 +05:30
|
|
|
.container {
|
2026-01-24 02:11:19 +05:30
|
|
|
width: 100%;
|
|
|
|
|
max-width: 520px;
|
|
|
|
|
background: #ffffff;
|
|
|
|
|
padding: 28px 30px;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
|
2025-12-29 15:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ===== HEADING ===== */
|
|
|
|
|
.container h2 {
|
2025-12-29 15:22:15 +05:30
|
|
|
text-align: center;
|
2026-01-24 02:11:19 +05:30
|
|
|
color: #0d6efd;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
font-weight: 700;
|
2025-12-29 15:22:15 +05:30
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
/* ===== FORM ELEMENTS ===== */
|
2025-12-29 15:22:15 +05:30
|
|
|
form label {
|
|
|
|
|
display: block;
|
2026-01-24 02:11:19 +05:30
|
|
|
margin-top: 14px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
2025-12-29 15:22:15 +05:30
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-24 02:11:19 +05:30
|
|
|
form select,
|
|
|
|
|
form input[type="file"] {
|
2025-12-29 15:22:15 +05:30
|
|
|
width: 100%;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
border-radius: 6px;
|
2026-01-24 02:11:19 +05:30
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
font-size: 14px;
|
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
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 22px;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
background-color: #0d6efd;
|
2025-12-29 15:22:15 +05:30
|
|
|
color: white;
|
|
|
|
|
border: none;
|
2026-01-24 02:11:19 +05:30
|
|
|
border-radius: 8px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
2025-12-29 15:22:15 +05:30
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
2026-01-24 02:11:19 +05:30
|
|
|
background-color: #0b5ed7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ===== MOBILE VIEW ===== */
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.main {
|
|
|
|
|
margin-top: 60px;
|
|
|
|
|
height: calc(100vh - 60px);
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
padding: 22px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container h2 {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
}
|
|
|
|
|
}
|