:root {
  --primary: #16a9e7;
  --secondary: #19c4c0;
  --dark: #111111;
  --gray: #6f6f73;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f4f5f7 0%, #eef2f5 100%);
  color: var(--dark);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 900px;
  background: white;
  border-radius: 16px;
  padding: 40px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.logo {
  max-width: 100%;
  max-height: 250px;
  margin-bottom: 0px;
}

.institutional-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 25px;
}

h1 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.message {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #444;
}

.status-box {
  margin-top: 30px;
  padding: 15px;
  border-left: 4px solid var(--primary);
  background: rgba(22,169,231,0.05);
  text-align: left;
}

.footer {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

@media (max-width: 600px) {
  .card {
    padding: 30px 20px;
  }

  h1 {
    font-size: 24px;
  }
}