/* Shared login / signup modal (inner pages) */
.ram-login-modal {
  background: #0a1931;
  border: none;
  border-radius: 22px;
  padding: 28px 24px 30px;
  color: #fff;
  position: relative;
}

.ram-login-modal__close { position: absolute; top: 14px; right: 14px; }

.ram-login-modal__brand {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #f5a623;
  margin-bottom: 16px;
}

.ram-login-modal__tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 16px;
}

.ram-login-modal__tab {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
}

.ram-login-modal__tab.is-active {
  background: linear-gradient(90deg, #4facfe, #7b61ff);
}

.ram-login-modal__roles {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.ram-login-role,
.ram-signup-role {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease;
  box-shadow: none;
}

.ram-login-role:hover,
.ram-signup-role:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.ram-login-role.is-active,
.ram-signup-role.is-active {
  background: linear-gradient(90deg, #4facfe, #7b61ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(79, 172, 254, 0.35);
}

.ram-login-input {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
}

.ram-login-submit {
  border: none;
  border-radius: 999px;
  padding: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #4facfe, #7b61ff);
}

.service-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card__actions .service-card__btn {
  border: none;
  cursor: pointer;
}

.jobs-listing-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jobs-listing-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eef2ff;
  color: #3b5bfd;
  font-weight: 700;
  flex-shrink: 0;
}

.services-tab__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
