/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 320px;
  text-align: center;
}

.login-box img {
  width: 100px;
  margin-bottom: 20px;
}
/* Keep desktop layout as-is, adjust mobile only */
@media (max-width: 600px) {
  body {
    align-items: flex-start;   /* move box closer to top */
    padding-top: 100px;         /* small gap from top */
    height: auto;              /* avoid full 100vh on mobile */
  }
}


.login-box p {
  color: #555;
  margin-bottom: 20px;
  font-size: 14px;
}

.login-box input {
  width: 100%;
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background-color: #0073e6;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-box button:hover {
  background-color: #005bb5;
}
.title{
    font-weight: bold;
}

.error-message {
  color: #dc3545 !important;
  font-size: 14px;
  margin-top: 10px;
  display: none; 
}

.dl{
    font-size: 0.8em;
 display: block;      /* makes span act like a block */
  text-align: left;    /* align text to left */
 padding-left: 5px;
}