/* ============================= */
/*  SECȚIUNEA DE LOGIN - FULL HERO  */
/* ============================= */
.sign_in_section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px 60px; /* 100px pentru spațiu sub header */
  overflow: hidden;
  z-index: 1; /* sub headerul sticky, dar peste footer */
  margin-top: -116px;
}

/* Imaginea de fundal */
.sign_in_section::before {
  content: "";
  position: absolute;
  top: 0; /* imaginea pornește chiar de sus, sub header */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/slider_index2.jpg') no-repeat center center/cover;
  z-index: 0;
}

/* Overlay semi-transparent peste imagine */
.sign_in_section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Formularul din interior */
.login-container {
  position: relative;
  z-index: 2; /* peste overlay */
  width: 100%;
  max-width: 420px;
  background: rgba(15, 20, 30, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}


.login-box h1 {
  font-size: 28px;
  margin-bottom: 6px;
  color:#FFF;
}
.login-box p {
  color: #97a3b8;
  margin-bottom: 18px;
}

/* Formular și butoane */
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-size: 13px;
  color: #97a3b8;
}

.form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  outline: none;
}
.form input:focus {
  border-color: #5b8cff;
  box-shadow: 0 0 8px rgba(91, 140, 255, 0.3);
}

.pw-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pw-toggle {
  background: transparent;
  border: none;
  color: #97a3b8;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.primary {
	background-color:#9e673d;
  color: white;
  box-shadow: 0 6px 24px rgba(91, 140, 255, 0.3);
}

.or {
  text-align: center;
  color: #97a3b8;
  margin: 14px 0;
  font-size: 13px;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.social img {
  width: 18px;
  height: 18px;
}
.social:hover {
  background: rgba(255, 255, 255, 0.1);
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #97a3b8;
}

.error {
  color: #ffb4b4;
  font-size: 13px;
  min-height: 18px;
}

.signup {
  font-size: 13px;
  color: #97a3b8;
  text-align: center;
}
.signup a {
  color: #5b8cff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .login-container {
    padding: 24px;
  }
}
