body,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}

header {
  color: #333;
  padding: 20px;
  position: fixed;
  width: 100%;
  top: 0;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
}

nav a:hover {
  text-decoration: none;
  color: #7367f0;
  font-weight: 600;
  font-size: 18px;
}

main {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.left-section {
  flex: 1;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.right-section {
  flex: 1;
  position: relative;
}

.content {
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.login-button {
  position: absolute;
  top: 1rem;
  display: flex;
  gap: 1rem;
  right: 20px;
}

.login-button a {
  background-color: #7367f0;
  color: white;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0.358rem;
  transition: background-color 0.3s;
}

.login-button a:hover {
  box-shadow: 0 8px 25px -8px #7367f0;
}

footer {
  background-color: #7367f0;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  margin: 0;
}
