@import url("../styles.css");
:root {
  --primary-green: royalblue;
  --dark-green: blue;
  --bg-gradient: linear-gradient(135deg, aliceblue, #d2eaf4);
  --text-dark: #1b3b2f;
  --text-muted: cornflowerblue;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  color: var(--text-dark);
}
body .container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  transition: all 0.3s ease;
}
body .container .logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: royalblue;
}
body .container .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .container .error-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 10px;
}
body .container .error-message {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
body .container .error-description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}
body .container .button {
  display: inline-block;
  background-color: var(--primary-green);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
body .container .button:hover {
  background-color: var(--dark-green);
}
body .container form {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 10px;
}
body .container form input {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 12px 20px;
}

/*# sourceMappingURL=ErrorComponent.css.map */
