body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  background-image: url("../static/images/pexels-mylo-kaye-6585361-50.jpg");
  background-size: cover;
  image-rendering: optimizeSpeed;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: whitesmoke;
  border-radius: 10px;
  
}

.logo-container, .login-container {
  /*background-color: #ffffff;*/
  /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);*/
  border-radius: 8px;
  padding: 20px;
}

.logo-container {
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-logo {
  max-width: 100%;
  height: auto;
}

.login-container {
  width: 17rem;
}

.login-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.login-form {
  width: 100%;
}

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

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.form-group input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 95%;
}

.login-button {
  background-color: #ee6c2a;
  color: #fff;
  border: solid 1px #ee6c2a;
  border-radius: 20px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  width:100%;
  position: relative;
  font-size:medium;
}

.login-button:hover {
  background-color: #fff;
  color: #ee6c2a;
  border:solid 1px #ee6c2a;
}



.footer {
  margin-top: auto;
  background-color: white;
  opacity:0.6;
  text-align: center;
  justify-content: space-between; /* Add space between buttons */
  align-items: center;
  font-family:"Heltevica", sans-serif;
  font-weight: 400;
  position:absolute;
  width:20vw;
  bottom:0px;
  right:0vw;
  font-size: small;text-decoration: none;
}

.flash-message {
  color: red;
  text-align: center;
  margin: 10px;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5rem 5rem 5rem 5rem;
  border-color: transparent #83d7fe #83d7fe transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

#maxlogic-logo{
  width: 4.5rem;
  height: auto;
  padding-top: 0.75rem;
}