
/*Login Design Start*/

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* 3D effect */
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.login-logo-box {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.login-logo-image {
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.login-datetime-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
}

.login-datetime {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.login-version {
  font-size: 14px;
  color: #555;
  
}

.login-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.login-form button {
  width: 100%;
  background-color: #001f3f;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #007bbd;
}

.login-error {
  margin-top: 10px;
  font-size: 14px;
  color: red;
}

/*Login Design End*/

/*----------------------Break line--------------------------------*/



















