:root {
  --ccuk-orange: #C2653B;
  --ccuk-grey: #D9D9D9;
  --ccuk-text: #222222;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--ccuk-grey);
  color: var(--ccuk-text);
}

.ccuk-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.ccuk-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 28px 26px 26px;
  position: relative;
}

.ccuk-accent {
  height: 6px;
  width: 100%;
  background: var(--ccuk-orange);
  border-radius: 14px 14px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}

.ccuk-logo {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}

.ccuk-logo img {
  max-width: 160px;   /* smaller logo */
  width: 100%;
  height: auto;
}

.ccuk-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.ccuk-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;

  background: var(--ccuk-orange);
  color: #fff;
}

.ccuk-btn:hover {
  filter: brightness(0.95);
}
