*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #0b1f3a 0%, #1a3a6e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cs-wrapper {
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.cs-brand {
  font-family: Arial, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 2.5rem;
}

.cs-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  animation: spin 4s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cs-title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cs-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cs-sub strong {
  color: #c9a84c;
}

.cs-divider {
  width: 60px;
  height: 2px;
  background: rgba(201,168,76,.4);
  margin: 0 auto 2rem;
}

.cs-form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  max-width: 320px;
  margin: 0 auto 1.5rem;
}

.cs-field input {
  width: 100%;
  padding: .85rem 1.2rem;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
  text-align: center;
}

.cs-field input::placeholder { color: rgba(255,255,255,.4); }
.cs-field input:focus { border-color: #c9a84c; }

.cs-btn {
  padding: .85rem;
  background: #c9a84c;
  color: #0b1f3a;
  border: none;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.cs-btn:hover { background: #e8c97a; }

.cs-error {
  color: #f48fb1;
  font-family: Arial, sans-serif;
  font-size: .85rem;
}

.cs-contact {
  font-family: Arial, sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.cs-contact a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
}

.cs-contact a:hover { color: #c9a84c; }

.cs-legal {
  margin-top: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

.cs-legal a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
}

.cs-legal a:hover { color: #c9a84c; }
