/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: url('./assets/Dashboard.png') no-repeat center center/cover;
  height: 100vh;
  color: #fff;
  position: relative;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2b2b2b;
  padding: 10px 30px;
  font-size: 14px;
  color: #fff;
}

/* top logo */
.logo {
  display: flex;
  align-items: center;
  height: 28px;
}

.logo img {
  height: 100%;
  max-height: 28px;
  width: auto;
  object-fit: contain;
  margin-top: 5px;
}

/* box logo */
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.login-logo img {
  width: 120px;
  height: auto;
}

.top-info {
  display: flex;
  gap: 10px;
}

.profile {
  cursor: pointer;
}

/* Centered login box */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 50px);
}

.login-box {
  background-color: #797979;
  color: #333;
  padding: 40px 30px;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  min-height: 300px;
}


form {
  display: flex;
  flex-direction: column;
}

form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

form button {
  padding: 10px;
  background-color: #8cc63f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

form button:hover {
  background-color: #7ab132;
}

.forgot-password {
  margin-bottom: 15px;
  text-align: left;
  font-size: 12px;
}

.forgot-password a {
  color: red;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  .profile {
    display: none;

  }

  .top-info {
    display: none;

  }

}