* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
  text-align: center;
  overflow-x: hidden;
}

.container {
  max-width: 600px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-container {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 40px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-text {
  margin-bottom: 20px;
  font-weight: 400;
  color: #333;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid #0099cc;
  color: #0099cc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

/* Logo image styles - for when an actual logo is added */
.logo {
  max-width: 150%;
  max-height: 150%;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0;
  animation: logoGrow 1.5s ease-out forwards;
}

h1 {
  font-size: 32px;
  font-weight: 400;
  color: #264165;
  margin-bottom: 50px;
  line-height: 1.4;
  padding-top: 50px;
  opacity: 0;
  animation: fadeIn 1.2s ease-out 1s forwards;
}

p {
  font-size: 22px;
  color: #264165;
  margin-bottom: 60px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  animation: fadeIn 1.2s ease-out 2s forwards;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: transparent;
  border-radius: 2px;
  margin-top: 100px;
  opacity: 0;
  position: relative;
  animation: fadeIn 1.2s ease-out 2.8s forwards;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #000;
  border-radius: 2px;
  animation: progressGrow 2s ease-out 3.2s forwards;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  p {
    font-size: 18px;
  }

  .logo-container {
    max-width: 240px;
  }

  .progress-bar {
    margin-top: 60px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  body {
    justify-content: center;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  .logo-container {
    max-width: 180px;
    margin-bottom: 25px;
  }

  .container {
    padding: 0 10px;
  }
}

@media (min-height: 700px) {
  body {
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoGrow {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes progressGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
