/* Reset and base styles */

@font-face {
  font-family: "Antonio";
  src: url("font/Antonio-Medium.ttf")
    format("woff2");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  font-family: "Antonio", sans-serif;
  background-color: #fef6f5;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
#main-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 20px 0px 20px 25px;
  /* width: 100%; */
}

#main-header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo img {
  height: 40px;
}

.chat-button {
  border: 2px solid #6a1b9a;
  color: #6a1b9a;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
}

/* Main login section */
.log-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.entry{
  display: flex;
  flex-direction: column;
}

.container-log {
  background-color: #fff;
  padding: 50px;
  border-radius: 12px;
  /* box-shadow: 0 0 15px rgba(0,0,0,0.1); */
  max-width: 400px;
  width: 100%;
}

.login-box {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
}

.login-text {
    font-family: "Antonio", sans-serif;
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: -3px;
  line-height: 1.1em;
}

.entry-item {
  display: flex;
  flex-direction: column;
  padding: 15px 10px 15px 10px;
  border-radius: 8px;
  /* background-color: #fef6f5; */
}

.itemLevel{
  color: black;
  font-size: 12px;
}
.login-text-inner {
  display: inline-block;
  font-weight: 200;
}

#forgotPassword {
  visibility: hidden;
}

.password-label {
  visibility: hidden;
}

span.login-text-inner::after {
  content: "";
  background: url("image/vector.svg");
  display: block;
  height: 15px;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: -1%;
}
.intro h2 {
 display: none;
}
.entry-item input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  background: transparent;
  padding: 15px 10px 15px 10px;
  border-radius: 8px;
  background-color: #fef6f5;
  display: flex;
  flex-direction: column;
  width: 95%;
  gap: 10px;
}
.entry-item label{
display: none;
}

.entry-item .password-label {
  display: none;
}

#forgotPassword{
  display: none;
}
.options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}

.options-row a {
  color: #007bff;
  font-weight: 500;
}
.buttons {
  display: flex;
  justify-content: center;
}

.buttons button {
  width: fit-content;
  padding: 15px 50px 15px 50px;
  background-color: #7471f6;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* .sign-in-button:hover {
    background-color: #4a148c;
} */

/* Footer */
footer {
  padding: 20px 0;
  /* background-color: #fff; */
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #92989f;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  /* .w-10/12 {
        width: 90%;
    } */

  .login-text {
    font-size: 2.1rem;
  }

  .chat-button {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .container-log {
    padding: 0px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .entry-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .entry-item img {
    margin-bottom: 5px;
  }
  .login-text {
    font-size: 2.1rem;
  }
  .options-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
