body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #dbf4e6;
    display: flex;
    height: 100vh;
    position: relative;
}

.headcontainer {
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    line-height: 15px;
    margin-left: 80px;
    margin-top: 30px;
}

.Citylogo {
    width: 100px;
    height: 100px;
    margin-right: 15px;
}

.petpic {
    position: absolute;
    width: 760px;
    height: 460px;
    margin: 20px 0 0 76px;
}

.header {
    margin-left: 20px;
}

.header p {
    font-size: 18px;
    color: #007b42;
}

.header h1 {
    color: #006c44;
}

.Vetlogo {
    margin-top: 52px;
    width: 150px;
    height: 150px;
}

.logincontainer {
    background-color: white;
    margin: 40px 0px 40px 200px;
    width: 490px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
}

.error-container {
    min-height: 20px;     /* ✅ reserve space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-container p {
    color: red;
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

form {
    margin: 15px 40px 90px 45px;
    height: 300px;
}

.input-group {
    text-align: left;
    line-height: 70px;
}

.input-group i {
    position: absolute;
    font-size: 25px;
    right: 505px;
    color: #007b42;
}

.input-group input {
    padding-left: 50px;
    padding-right: 20px;
    border: 2px solid #007b42;
    font-size: 15px;
    letter-spacing: 1.5px;
    height: 50px;
    width: 320px;
    background-color: #dbf4e6;
    border-radius: 8px;
}

.showpass {
    display: flex;
    align-items: center;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0 0px 50px 20px;
    gap: 8px;
}

.showpass input[type="checkbox"] {
    transform: scale(1.5);
}

#login {
  width: 350px;
  padding: 10px;
  background-color: #007b42;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#login:hover {
  background-color: #005e34;
  transform: scale(1.02);
}

#login:active {
  background-color: #004d2b;
  transform: scale(0.98);
}