@layer primereact {
  .p-toast-message-content {
    flex-direction: column;
  }
  .p-selectbutton .p-button.p-highlight {
    background-color: #002e6d;
    border-color: #002e6d;
    color: white;
  }
}

/* ===================== HEADER ===================== */

.hero-header {
  position: relative;
  height: 460px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.logo-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-wrapper img {
  width: 510px;
  height: auto;
  margin-bottom: 0.85rem;
}

.logo-wrapper .brand-tagline {
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  background: linear-gradient(
    135deg,
    var(--coral-orange),
    var(--hot-pink),
    var(--light-purple),
    var(--periwinkle-blue)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===================== HEADER ===================== */

.layout {
  min-height: 100vh;
}

.session {
  display: flex;
  justify-content: center;
  align-items: center;
}

.session-logo {
  height: 40vh;
  background-color: #224057;
  overflow: hidden;
}

.session-form {
  padding-top: 45px;
  flex-direction: column;
}

.layout form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.layout h1 {
  margin: 0;
}

.layout .input-login-field label {
  font-size: 18px;
  padding: 14px;
  position: absolute;
  left: 1px;
  pointer-events: none;
  transition: 0.3s ease all;
  color: rgb(193, 190, 190);
}

.layout .input-login-field {
  position: relative;
  width: auto;
  height: auto;
}

.layout input {
  height: 50px;
  width: 350px;
}

.layout img {
  max-width: 420px;
}

.layout .p-toast-icon-close {
  height: 1.2em;
  width: 1.2em;
}

