/* MetaCuanBot Client Portal Styles */
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 1rem;
}
.login-card {
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.login-card .card-body { padding: 2.5rem; }
.brand-icon {
  font-size: 3rem;
  color: #2a5298;
  text-align: center;
  margin-bottom: .5rem;
}

.info-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem .25rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: .92rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: #6c757d; font-weight: 500; }
.info-row .value { font-weight: 600; text-align: right; }

.action-btn {
  border: none;
  border-radius: 1rem;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.action-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.action-btn .ic {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin: 0 auto .6rem;
}

@media (max-width: 576px) {
  .login-card .card-body { padding: 1.75rem; }
  .info-row { font-size: .85rem; }
}
