* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: 'Segoe UI', sans-serif;

}

body {

  min-height: 100vh;

  background-size: cover;

  background-position: center;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #1f2933;

}

.overlay {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(4px);

}

.container {

  position: relative;

  width: 100%;

  max-width: 380px;

  padding: 28px;

  text-align: center;

  z-index: 2;

}

.logo {

  width: 80px;

  height: 80px;

  margin: 0 auto 14px;

  border-radius: 50%;

  background: #e6efe8;

  color: #2f6f4e;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  font-weight: bold;

}

h1 {

  color: #ffffff;

  font-size: 24px;

}

p {

  color: #e5e7eb;

  font-size: 14px;

  margin-bottom: 22px;

}

.link {

  display: block;

  background: #ffffff;

  color: #2f6f4e;

  text-decoration: none;

  padding: 15px;

  margin-bottom: 14px;

  border-radius: 999px;

  font-weight: 600;

  transition: 0.25s;

}

.link:hover {

  transform: scale(1.03);

  background: #f0f7f2;

}

.socials {

  margin-top: 18px;

  display: flex;

  justify-content: center;

  gap: 16px;

}

.socials a {

  color: #ffffff;

  font-size: 22px;

}