/* Auth Pages Shared Theme Stylesheet (Sign In / Sign Up) matching Landing Page Aesthetic */
.bodyWrapper {
  min-height: 100vh;
  display: flex;
  background-color: #030609;
  color: #ffffff;
  font-family: var(--sans), sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  margin: 0;
  padding: 0;
}

.creativeSide {
  display: none;
}

.loginSection {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #030609;
  position: relative;
  z-index: 5;
}

.loginContainer {
  width: 100%;
  max-width: 420px;
  background: #070c11;
  border: 1px solid #16222f;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  box-sizing: border-box;
}

.loginHeader {
  background: #09121a;
  border-bottom: 1px solid #16222f;
  padding: 28px 24px;
  text-align: center;
}

.loginHeader h1 {
  font-family: var(--serif), serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: #ffffff;
  text-transform: uppercase;
}

.loginHeader p {
  font-family: var(--mono), monospace;
  font-size: 11px;
  color: #8ccee0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.loginForm {
  padding: 32px 24px;
}

.formGroup {
  margin-bottom: 24px;
}

.formGroup label {
  display: block;
  font-family: var(--mono), monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #6f838d;
}

.formControl {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #25394e;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
  background-color: #09121a;
  color: #ffffff;
  box-sizing: border-box;
  font-family: inherit;
}

.formControl:focus {
  outline: none;
  border-color: #8ccee0;
}

.btn, .btn-submit {
  width: 100%;
  padding: 13px;
  background: #8ccee0;
  color: #030609;
  border: 1px solid #8ccee0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--mono), monospace;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover:not(:disabled), .btn-submit:hover:not(:disabled) {
  background: #ffffff;
  border-color: #ffffff;
}

.btn:disabled, .btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.forgotPassword {
  text-align: center;
  margin-top: 18px;
}

.forgotPassword a {
  color: #6f838d;
  text-decoration: none;
  font-size: 12px;
  font-family: var(--mono), monospace;
  transition: all 0.2s ease;
}

.forgotPassword a:hover {
  color: #ffffff;
}

.signupLink {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: #6f838d;
  border-top: 1px solid #16222f;
  padding-top: 20px;
}

.signupLink a {
  color: #8ccee0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.signupLink a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.errorAlert {
  background: rgba(220, 38, 38, 0.08);
  color: #f87171;
  border: 1px solid #dc2626;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 24px;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 900px) {
  .bodyWrapper {
    flex-direction: row;
  }
  
  .creativeSide {
    flex: 1.25;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    position: relative;
    background-image: 
      linear-gradient(to right, rgba(3, 6, 9, 0.85) 30%, rgba(3, 6, 9, 0.4) 100%),
      url('../img/main.jpg');
    background-size: cover;
    background-position: center;
    border-right: 1px solid #16222f;
    overflow: hidden;
  }
  
  .loginSection {
    flex: 1;
    padding: 60px;
    background: #030609;
  }
  
  .loginContainer {
    border: 1px solid #16222f;
    border-radius: 8px;
    background: #070c11;
  }
  
  .loginHeader {
    background: #09121a;
    border-bottom: 1px solid #16222f;
    text-align: center;
    padding: 28px 24px;
  }
  
  .loginHeader h1 {
    font-size: 24px;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
  }
  
  .loginHeader p {
    font-size: 12px;
  }
}

.creativeLogo img,
.loginHeader img,
.authLogo img {
  width: 140px;
  height: auto;
  max-height: 123px;
  object-fit: contain;
  object-position: left;
  display: block;
}
