body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #3955d1;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

header {
  background-color: #023059;
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.imagelogo {
  height: 50px;
  padding-left: 10px;
}

.login-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.login-container h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.icon-calendar {
  display: block;
  margin: 0 auto 20px;
  width: 90px;
  height: 90px;
  background-image: url("/static/images/Group.png");
  background-size: cover;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
}

input[type="email"],
input[type="password"] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-entrar {
  width: calc(100%);
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.btn-entrar:hover {
  background-color: #218838;
}

.link-cadastrar {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
}

.link-cadastrar:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

footer p {
  color: #aaa;
}

.flash-messages {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 80%;
  max-width: 400px;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #f5c6cb;
  margin-bottom: 10px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #c3e6cb;
  margin-bottom: 10px;
}


