/* Reset and layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #0F4309;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
  cursor: pointer;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  white-space: nowrap;
  overflow: hidden;
}

nav .logo img {
  height: 1px;       /* Adjust height so it fits well inside navbar */
  width: auto;        /* Maintain aspect ratio */
  max-width: 100%;    /* Prevent stretching */
  object-fit: contain;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  font-size: 10px;
  padding: 10px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
}

nav ul li a {
  color: #003300;
  text-decoration: none;
}

/* Full-screen background image */
.background-container {
  height: 100%;
  width: 100%;
  background-image: url('img/KLD.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Flex container for layout */
.overlay-container {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Right green arc panel */
.right-panel {
  width: 50%;
  height: 100vh;
  background-color: rgba(35, 79, 30, 0.8);
  padding-top: 40%;
  clip-path: path('M100% 0 H15% C-10% 50%, 15% 100%, 100% 100% Z');
  -webkit-mask-image: radial-gradient(circle 600px at 5% 50%, transparent 98%, black 100%);
  mask-image: radial-gradient(circle 600px at 5% 50%, transparent 98%, black 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Left panel for form */
.left-panel {
  width: 45%;
  background-color: rgba(35, 79, 30, 0.8);
  clip-path: path('M0 0 H85% Q100% 50% 85% 100% H0 Z');
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form container */
.login-box {
  width: 90%;
  max-width: 300px;
  color: #003300;
  text-align: center;
  background: transparent;
  cursor: pointer;
}

.seal {
  width: 230px;
}

.seals {
  margin-top: 40px;
  width: 160px;
}

.login-box h4 {
  margin-bottom: 5px;
  color: #FFFFFF;
}

.login-box input, .input-style {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #003300;
  border-radius: 20px;
font-size: 12px;
}

/* Forgot Password */
.forgot-password {
  display: block;
  text-align: right;
  font-size: 8px;
  margin-bottom: 10px;
  color: #FFFFFF;
  text-decoration: none;
}

/* Button */
.login-btn {
  width: 40%;
  padding: 8px;
  background-color: #CB0408;
  color: rgba(1, 1, 1, 0.9);
  border: none;
  border-radius: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Signup text */
.signup-text {
  font-size: 8px;
  color: #FFFFFF;
  cursor: pointer;
}

.signup-text a {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Header with Role Dropdown */
.signup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  width: 100%;
}

.signup-title {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}

.role-dropdown {
  padding: 4px 6px;
  font-size: 12px;
  height: 24px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: auto;
  max-width: 120px;
  cursor: pointer;
}
.error-msg {
  color: red;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}
.custom-notif {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 8px solid;
}

.custom-notif.success {
  border-color: #28a745;
}

.custom-notif.error {
  border-color: #dc3545;
}

.notif-icon {
  font-size: 40px;
  margin-right: 15px;
}

.success-icon {
  color: #28a745;
}

.error-icon {
  color: #dc3545;
}

.notif-message h3 {
  margin: 0;
  font-size: 20px;
}

.notif-message p {
  margin: 5px 0 10px;
  font-size: 14px;
}

.notif-actions {
  margin-top: 10px;
}

.notif-btn {
  display: inline-block;
  padding: 8px 15px;
  margin-right: 10px;
  background: #28a745;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.notif-btn.error {
  background: #dc3545;
}






