body, p {
  margin: 0 0;
  display: flex;
  background-color: var(--color-acatora-white);
}

body {
  flex-direction: column;
}

* {
  margin: 0 0;
  font-family: "Poppins";
  text-decoration: none;
}

::-webkit-scrollbar {
    display: none;
}

h1, h3 {
  color: var(--color-acatora-white);
}

.app-bar {
  margin: 0 0;
  width: 100%;
  height: 7vh;
  position: fixed;
  display: flex;
  align-items: center;
  background-color: transparent;
  z-index: 3;
  transition: background-color .3s;
}

.auth-buttons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page1 {
  width: 100%;
  height: 700px;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* The key CSS property for the blur effect */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* For Safari compatibility */
  
  /* Place the blur layer below the content but above the background */
  z-index: 1; 
}

/* Ensure the content itself is on top of the blur layer */
.page1 h1,
.page1 h3,
.page1 .button1 {
  position: relative;
  z-index: 2;
}

.page2 {
  width: 100%;
  height: 700px;
  display: flex;
  padding-top: 7vh;
  flex-direction: column;
  justify-content: center;
  background-color: seagreen;
  align-items: center;
  z-index: 1;
}

.page3 {
  width: 100%;
  height: 700px;
  display: flex;
  padding-top: 7vh;
  flex-direction: column;
  justify-content: center;
  background-color: darkkhaki;
  align-items: center;
  z-index: 1;
}

.select {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 15px;
  padding: 5px 15px;
  margin-right: 20px;
}

.select:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, .45);
  border-radius: 10px;
}

.dashboard-select {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-family: sans-serif;
  background-color: transparent;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  width: 85%;
  margin: 0 auto 10px auto;
  transition: background-color 0.2s;
  line-height: normal;
  text-align: left;
}

.sign-up {
  font-size: 20px;
  background-color: var(--color-acatora-gray);
  border-radius: 3px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-acatora-gray);
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  margin-right: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  transition: border-color var(--time-button), color var(--time-button), background-color var(--time-button);
}

.sign-up:hover {
  background-color: transparent;
  color: var(--color-acatora-gray);
}

.text {
  font-size: 20px;
  background-color: transparent;
  border: none;
  border-radius: 10px;
  padding: 0;
  text-decoration: none;
  color: rgb(37, 37, 37);
  margin-right: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.text:hover {
  cursor: pointer;
}

.acatora-logo {
  width: 200px;
  margin-left: 20px;
}

.horizontal-line {
  height: 45px;
  border-color: var(--color-acatora-gray-alpha);
  margin-right: 30px;
  border-width: 1px;
  border-style: solid;
}

.button1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  gap: 10px;
  cursor: pointer;
  border-color: var(--color-acatora-blue);
  border-style: solid;
  background-color: var(--color-acatora-blue);
  color: white;
  font-weight: 500;
  border-radius: 3px;
  border-width: 2px;
  transition: border-color var(--time-button), color var(--time-button), background-color var(--time-button);
}

.button1:hover {
  background-color: transparent;
  color: var(--color-acatora-blue);
}