/* Centering the login box */

.login-container {
  width: 100%;
  max-width: 350px;
  margin: 100px auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Logo styling */
.pagetest-logo {
  width: 80px;
  height: 80px;
}

/* Input field styling */
.form-group {
  margin-bottom: 15px;
}

input[type='email'],
input[type='password'] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
#pagetest_password {
  padding: 5px 10px !important;
}
/* Sign in button */
.login-button {
  width: 100%;
  background-color: #11495d; /* Brand color */
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.login-button:hover {
  background-color: #0e3e51;
}

/* Forgot password and register text */
.forgot-password,
.register {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  border: none;
  outline: none !important;
}
a:focus {
  box-shadow: none !important;
}

.register a {
  color: #11495d;
  text-decoration: none;
}

.register a:hover {
  text-decoration: underline;
}
