/*
body {
  background: url("/static/main/backgroundImages/5153829.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
*/

body {
  background: linear-gradient(to right, #f0f2f5, #d9e2ec);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}


body h1 {
 padding-top: 100px;
 color:#000080;
}


body h2 {
 color:#0000CD;
}

body h1,h2{
text-align: center;
}

form {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

label {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="password"] {
  width: 100%; /* Ensures input fields take up 100% of their parent's width */
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s;
  box-sizing: border-box; /* Crucial: Includes padding and border in the 100% width */
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #007bff;
  outline: none;
}

button[type="submit"] {
  display: block; /* Changed to 'block' to allow full width and stack properly */
  margin-top: 25px;
  padding: 12px 20px;
  background-color: #007bff;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%; /* Ensures the button takes up 100% of its parent's width */
  transition: background-color 0.3s;
  box-sizing: border-box; /* Crucial: Includes padding and border in the 100% width */
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

button[disabled] {
  background-color: #888 !important;
  cursor: not-allowed;
}

.new-user-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.new-user-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.new-user-text a:hover {
  text-decoration: underline;
}



