/* General reset for consistent styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  list-style: none;
}


/* Remove list dots for navbar */
.iframe ul {
  list-style-type: none; /* Removes the default list dots */
  padding: 0; /* Removes any default padding */
  margin: 0; /* Removes any default margin */
}

/* If your navbar uses a list for links, ensure that links are displayed inline */
.iframe ul li {
  display: inline; /* Makes list items appear side by side */
}

/* Optional: Adjust padding/margins for list items to suit your layout */
.iframe ul li a {
  padding: 10px;
  text-decoration: none; /* Removes underline from links */
  color: white; /* Adjust text color as needed */
}

/* Styles for the iframe/navbar */
.iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
  border: none; /* Removes any default border on iframe */
  background-color: #004080; /* Optional: Navbar background color */
}

/* Body styling */
body {
  background-color: #f9f9f9; /* Light background for contrast */
  margin: 0;
  padding: 0;
  padding-top: 60px; /* Prevent content from hiding under the navbar */
}

/* Login container styling */
.login-container {
  max-width: 400px;
  height: 400px;
  margin: 80px auto; /* Centers the login box and adjusts spacing */
  background-color: #fff; /* White background for login box */
  padding: 20px;
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 5px; /* Smooth corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  text-align: center;
}

/* Login container heading */
.login-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333; /* Dark text for readability */
}

/* Form labels */
.login-container label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-size: 14px;
  color: #555; /* Slightly lighter than heading text */
}

/* Input fields */
.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc; /* Gray border for inputs */
  border-radius: 3px;
  font-size: 16px;
  color: #333;
}

/* Input focus effect */
.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
  border-color: #007bff; /* Highlighted border */
  outline: none; /* Removes default focus outline */
}

/* Submit button */
.login-container .submit-btn {
  width: 100%;
  padding: 10px;
  background-color: #007bff; /* Blue background */
  color: #fff; /* White text */
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

/* Hover effect for button */
.submit-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.back-btn{
  background-color: red;
  width: 100%;
  padding: 10px;

  color: #fff; /* White text */
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.back-btn:hover{
  background-color: rgb(211, 4, 4);
}

/* Add responsiveness */
@media (max-width: 480px) {
  .login-container {
    margin: 20px; /* Reduce margin for smaller screens */
    padding: 15px; /* Reduce padding */
  }

  .iframe {
    height: 50px; /* Reduce navbar height */
  }

  body {
    padding-top: 50px; /* Adjust padding for smaller navbar */
  }
}


