/* --- Color Palette from Artist AMP Brand --- */
:root {
  --brand-orange: #F16623;
  --brand-blue: #2A4B8D;
  --text-dark: #1c1e21;
  --text-light: #606770;
  --background-white: #ffffff;
  --border-color: #dddfe2;
}

/* --- Basic Page Setup --- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  height: 100vh;
  overflow-x: hidden;
}

/* --- Main Split Screen Container --- */
.split-screen-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* --- Left Branding Pane --- */
.left-pane {
  width: 45%;
  background-color: var(--brand-orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
}

.brand-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  /* Logo sized at 105% for stylish overlap effect */
  width: 105%;
  max-height: 450px;
  height: auto;
  object-fit: contain;
}

.tagline {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 30px;
  color: white;
  flex-shrink: 0;
}

/* --- Right Login Form Pane --- */
.right-pane {
  width: 55%;
  background-color: var(--background-white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

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

.headline {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(42, 75, 141, 0.2);
}

.helper-links {
  text-align: right;
  margin-bottom: 30px;
}

.forgot-password {
  font-size: 14px;
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 500;
}
.forgot-password:hover {
  text-decoration: underline;
}

.login-button {
  width: 100%;
  padding: 15px;
  background-color: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-button:hover {
  opacity: 0.9;
}

.signup-link {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--text-dark);
}

.signup-link a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: bold;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* For smaller screens */
@media (max-width: 768px) {
  .split-screen-container {
    flex-direction: column;
  }
  .left-pane, .right-pane {
    width: 100%;
    height: auto;
  }
  .left-pane {
    padding: 60px 20px;
  }
  .right-pane {
    padding: 60px 20px;
  }
}


/* --- Admin-specific styles --- */
.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 8px;
  width: auto;
}

.checkmark {
  margin-left: 5px;
}

.security-info {
  margin-top: 30px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid var(--brand-blue);
}

.security-info p {
  margin: 5px 0;
  font-size: 13px;
  color: var(--text-light);
}

.security-info p:first-child {
  font-weight: 600;
  color: var(--text-dark);
}
