@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #dfe9f5;
}


.logo {
  width: 100px; /* Adjust the width of the logo */
  height: auto; /* Maintain aspect ratio */
  margin-top: -10px; /* Adjust space between logo and 'Login' */
  margin-bottom: -10px; /* Adjust space between logo and 'Login' */
}

h1 {
  font-size: 2rem;
  color: #07001f;
  margin-bottom: 20px; /* Adjust space under 'Login' */
}

#layoutAuthentication {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#layoutAuthentication #layoutAuthentication_content {
  min-width: 0;
  flex-grow: 1;
}
#layoutAuthentication #layoutAuthentication_footer {
  min-width: 0;
}

.login_logo {
  width: 110px; /* Adjust the width of the logo */
  height: auto; /* Maintain aspect ratio */
  margin-top: -10px; /* Adjust space between logo and 'Login' */
  margin-bottom: -10px; /* Adjust space between logo and 'Login' */
  }

