@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400&family=Roboto:wght@400&display=swap");
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.auth-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  height: 100vh;
  padding-right: 60px;
  flex-direction: column;
  z-index: 1;
}
.auth-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("./images/truck.jpg") center/cover no-repeat;
  filter: brightness(0.5);
  z-index: -1;
}
.auth-card {
  background: white;
  width: 300px;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}
.auth-logo img {
  height: 40px;
}
.auth-title {
  margin: 0px 0px 16px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
  font-family: "Poppins", "Roboto", sans-serif;
}
.auth-subtitle {
  line-height: 1.4;
  font-family: "Poppins", "Roboto", sans-serif;
  font-weight: 400;
  color: rgb(80, 85, 92);
  margin: 0px 0px 20px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-primary {
  background-color: #1d4ed8;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1e40af;
}

.btn-secondary {
  background-color: #f97316;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #ea580c;
}

@media (max-width: 480px) {
  .auth-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center vertically */
    height: 100vh;
    padding: 20px; /* Replace right padding with general padding */
    position: relative; /* Ensure z-index and ::before background works */
    z-index: 1;
    text-align: center; /* Optional: if text needs to be centered */
  }

  .auth-layout::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("./images/truck.jpg") center/cover no-repeat;
    filter: brightness(0.5);
    z-index: -1;
  }
}
