* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, sans-serif;
}

/* footer */

footer {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 25px 10px;
     background: rgb(6, 76, 123);
}

/* Header */
.header {
     background: #ffffff;
     border-bottom: 1px solid #e5e5e5;
     position: sticky;
     top: 0;
     z-index: 1000;
}

.container {
     max-width: 1200px;
     margin: auto;
     padding: 15px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
}

/* Logo */
.logo {
     font-size: 22px;
     font-weight: bold;
     color: #222;
}

/* Navigation */
.nav {
     display: flex;
     align-items: center;
     gap: 25px;
}

.nav a {
     text-decoration: none;
     color: #333;
     font-size: 15px;
}

.nav a:hover {
     color: #007bff;
}

/* Button */
.btn {
     padding: 8px 16px;
     background: #007bff;
     color: #fff !important;
     border-radius: 4px;
}

/* Hamburger */
#menu-toggle {
     display: none;
}

.menu-icon {
     display: none;
     flex-direction: column;
     cursor: pointer;
}

.menu-icon span {
     width: 25px;
     height: 3px;
     background: #333;
     margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {

     .menu-icon {
          display: flex;
     }

     .nav {
          position: absolute;
          top: 70px;
          left: 0;
          width: 100%;
          background: #fff;
          flex-direction: column;
          align-items: flex-start;
          padding: 20px;
          gap: 15px;
          display: none;
          border-top: 1px solid #e5e5e5;
     }

     #menu-toggle:checked~.nav {
          display: flex;
     }

     .btn {
          width: 100%;
          text-align: center;
     }
}

/* login form */


.login-wrapper {
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #f4f6f8;
}

/* Form */
.login-form {
     background: #ffffff;
     padding: 30px;
     width: 100%;
     max-width: 360px;
     border-radius: 6px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.login-form h2 {
     text-align: center;
     margin-bottom: 20px;
     color: #222;
}

/* Inputs */
.form-group {
     margin-bottom: 15px;
}

.form-group label {
     font-size: 14px;
     color: #555;
     display: block;
     margin-bottom: 6px;
}

.form-group input {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 14px;
}

.form-group input:focus {
     outline: none;
     border-color: #007bff;
}

/* Remember */
.form-options {
     margin-bottom: 20px;
}

.remember {
     font-size: 14px;
     color: #555;
     display: flex;
     align-items: center;
     gap: 6px;
}

/* Button */
.btn-login {
     width: 100%;
     padding: 12px;
     background: #007bff;
     border: none;
     color: #ffffff;
     font-size: 15px;
     border-radius: 4px;
     cursor: pointer;
}

.btn-login:hover {
     background: #0056b3;
}