:root {
  --color-navy: #004867;
  --color-yellow: #ffc50a;
  --color-pink: #e9588d;
  --color-text: #525252;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.background {
  position: fixed;
  height: 45vh;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.background-top-left {
  top: 0;
  left: 0;
}

.background-bottom-right {
  bottom: 0;
  right: 0;
}

.container {
  text-align: center;
  padding: 2rem;
  width: 75%;
  border-radius: 2rem;
  background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 72, 103, 0.1);
  z-index: 2;
}


.logo {
  width: 160px;
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--color-text);
  margin: 0 0 0.75rem;
  font-weight: normal;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--color-text);
  margin: 0 0 2rem;
}

.link {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-navy);
  color: #FFFFFF;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(0, 72, 103, 0.15);
  margin-top: 3rem;
}

.link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 72, 103, 0.2);
}
