/* ========== SIGN UP =============== */

/* CODIA_HYBRID_LAYOUT_KERNEL_START */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
    text-decoration: none;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #FFFFFF;
  overflow-x: hidden;
}

[data-codia-role="app_shell"] {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100vh;
  min-height: 647px;
}

[data-codia-role="scroll_content"] {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
/* CODIA_HYBRID_LAYOUT_KERNEL_END */

/* Page layout: two-column split */
.page-layout {
  display: flex;
  flex-direction: row;
  height: 100%;
  /* min-height: 847px; */
}

/* Left panel */
.left-panel {
  flex: 0 0 766px;
  width: 766px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Right panel - photo collage */
.right-panel {
  flex: 1;
  background: #ECF5FB;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 46px 0 61px 12px;
  gap: 8px;
}

/* Navbar / logo row */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 24px 0 23px 144px;
  width: 766px;
}

.logo-icon {
  width: 13px;
  height: 18px;
  object-fit: contain;
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #41A0FA;
  margin-left: 6px;
  line-height: 23px;
}

/* Welcome text */
.welcome-section {
  padding: 17px 24px 17px 20px;
  margin-left: 144px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 100px;
}

.welcome-title {
  font-size: 20px;
  font-weight: 600;
  color: #4D4D4E;
  line-height: 25px;
  margin: 0;
}

.welcome-subtitle {
  font-size: 14px;
  color: #9A9A9B;
  line-height: 18px;
  margin: 0;
  max-width: 362px;
}

/* Role selection cards */
.role-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 144px;
  margin-top: 12px;
}

.role-card {
  position: relative;
  width: 373px;
  min-height: 71px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  border-radius: 6px 6px 0 3px;
  display: flex;
  flex-direction: row;
  align-items: left;
  padding: 16px 52px 13px 20px;
  gap: 12px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
  text-decoration: none;
  outline: none;
}

.role-card:first-child {
  border-radius: 6px 6px 0 0;
}

.role-card:hover {
  background: #ffc936;
  border-color: #ffc936;
  color: #8B929B;
  transform: translateY(-1px);
}

.role-card:active {
  transform: translateY(0);

}

.role-card:focus-visible {
  outline: 2px solid #41A0FA;
  outline-offset: 2px;
}

.role-card.selected {
  background: #ffc936;
  border-color: #41A0FA;
  color:#8B929B;
}

.role-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.role-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.role-name {
  font-size: 16px;
  font-weight: 700;
  color: #51535B;
  line-height: 14px;
}

.role-desc {
  font-size: 13px;
  /* color: #fff; */
  line-height: 18px;
}

/* .role-card:last-child .role-name {
  font-size: 10px;
  font-weight: 400;
  color: #55585F;
}

.role-card:last-child .role-desc {
  color: #55585F;
} */

.role-arrow {
  width: 16px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Continue button */
.continue-wrap {
  margin-left: 144px;
  margin-top: 29px;
  width: 371px;
}

.btn-continue {
  width: 100%;
  height: 42px;
  background: #EEF8FF;
  border: 1px solid #E5EDF2;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  font-family: 'Inter', system-ui, sans-serif;
}

.btn-continue:hover {
  background: #D8EFFD;
  border-color: #41A0FA;
}

.btn-continue-text {
  font-size: 11px;
  color: #FAFDFF;
  line-height: 17px;
}

/* Login row */
.login-row {
  margin-left: 144px;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.login-prompt {
  font-size: 14px;
  color: #8E8E8F;
  line-height: 19px;
}

.login-link {
  font-size: 14px;
  font-weight: 500;
  color: #5778DB;
  line-height: 19px;
  text-decoration: none;
  cursor: pointer;
}

.login-link:hover {
  text-decoration: underline;
}

/* Right panel photo cards */
.photo-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ECF5FB;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-1 {
  width: 345px;
  height: 175px;
  margin-left: 0;
}

.photo-card-2 {
  width: 345px;
  height: 175px;
  margin-left: 172px;
}

.photo-card-3 {
  width: 345px;
  height: 175px;
  margin-left: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-logo img {
  width: 150px;
  height: 36px;
  object-fit: contain;
}

.nav-logo span {
  font-size: 17px;
  font-weight: 700;
  color: #0162BF;
}


/* Input base */
.field-input {
  height: 37px;
  background: #FEFEFE;
  border: 1px solid #EDEDEE;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 14px;
  color: #4C4C4C;
  outline: none;
  width: 100%;
}

.field-input::placeholder {
  color: #D8D8DA;
  font-size: 10px;
}

.field-input:focus {
  border-color: #42A1FA;
}

/* Form rows */
.form-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-bottom: 0;
}

/* Field group */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field-group.full-width {
  width: 474px;
}

.field-group.half-width {
  width: 235px;
}

.field-label {
  font-size: 12px;
  color: #646464;
  font-weight: 400;
  margin: 0;
}

.field-label.bold {
  font-size: 14px;
  font-weight: 700;
  color: #595959;
}

.field-label.medium {
  font-size: 12px;
  font-weight: 500;
  color: #646464;
}

.field-group.half-width {
  width: 235px;
}

/* Agreements */
.agreements-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 4px;
}

.agreements-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  cursor: pointer;
  flex-shrink: 0;
}

.agreements-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.agreements-title {
  font-size: 12px;
  font-weight: 800;
  color: #565656;
  margin: 0;
}

.agreements-desc {
  font-size: 12px;
  color: #90908F;
  margin: 0;
  line-height: 1.4;
}

/* Create Account button */
.btn-create {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 473px;
  height: 40px;
  background: #2B7DE9;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 14px;
  padding: 0 16px;
}

.btn-create img.btn-icon {
  width: 16px;
  height: 18px;
  object-fit: contain;
}

.btn-create span {
  font-size: 11px;
  font-weight: 500;
  color: #ACCCF2;
  letter-spacing: 0.3px;
}

/* Login row */
.login-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.login-row span {
  font-size: 12px;
  color: #8E8E8F;
}

.login-row a {
  font-size: 12px;
  font-weight: 500;
  color: #5778DB;
  text-decoration: none;
}
