/* fp.css - responsive two-column layout */
:root {
  --fp-bg: #f7f9fc;
  --fp-card-bg: #ffffff;
  --fp-primary: #4458c8;
  --fp-text: #222;
  --fp-radius: 12px;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: var(--fp-bg);
  color: var(--fp-text);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.fp_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  margin: 20px;
  box-sizing: border-box;
}

/* Column 1 - Logo + Title */
.fp_header_col {
  flex: 1;
  background: var(--fp-card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-radius: var(--fp-radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.fp_header_col .logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.fp_header_col .logo-text {
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--fp-text);
  text-align: center;
}

/* Column 2 - Form */
.fp_form_col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.fp_card {
  width: 100%;
  max-width: 400px;
  background: var(--fp-card-bg);
  padding: 26px;
  border-radius: var(--fp-radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  text-align: center;
}

.fp_title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.fp_label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
  font-weight: 500;
  text-align: left;
}

.fp_input {
  width: 100%;
  padding: 12px;
  border-radius: var(--fp-radius);
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 18px;
  box-sizing: border-box;
}

.fp_button {
  width: 100%;
  padding: 13px;
  background: var(--fp-primary);
  color: #fff;
  border: none;
  border-radius: var(--fp-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.fp_button:hover {
  background: #3647a8;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .fp_container {
    flex-direction: column;
    align-items: center;
  }
  .fp_header_col, .fp_form_col {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .fp_title {
    font-size: 1.2rem;
  }
  .fp_header_col .logo-img {
    max-width: 140px;
  }
  .fp_header_col .logo-text {
    font-size: 1.3rem;
  }
  .fp_input, .fp_button {
    font-size: 0.95rem;
    padding: 10px;
  }
}
