/* Shared styles for authentication pages (SignIn and SignUp) */

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
}

/* Common container styles */
.auth-container-base {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
}

.auth-left {
  flex: 1;
  background: url('../imgs/telos-gradient.png') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-right {
  flex: 1;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.telos-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.auth-form-container {
  width: 100%;
  max-width: 400px;
}

/* Mobile responsiveness - hide left pane on mobile */
@media (max-width: 768px) {
  .auth-left {
    display: none;
  }

  .auth-right {
    flex: none;
    width: 100%;
    padding: 1rem;
  }

  .telos-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
  }
}