@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');

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

body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #f4f6f9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  color: #1a2533;
}

.glow-container {
  background: #ffffff;
  border: 1px solid #dcdfe6;
  border-top: 5px solid #ff6600;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
}

.glow-container::before {
  display: none;
}

.black-circle-logo {
  width: 76px;
  height: 76px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -62px auto 16px auto;
  border: 3px solid #ff6600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 6px;
  position: relative;
  z-index: 10;
}

.black-circle-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 5px;
}

h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b2c4d;
  margin-bottom: 0.3rem;
}

.subhead {
  font-size: 0.82rem;
  color: #5a6a7e;
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.input-group.floating {
  position: relative;
  margin-bottom: 1.2rem;
  text-align: left;
}

.input-group.floating input {
  width: 100%;
  padding: 1.1rem 1rem 0.4rem 1rem;
  background: #ffffff;
  border: 1.5px solid #dcdfe6;
  border-radius: 8px;
  font-size: 1rem;
  color: #1a2533;
  outline: none;
  transition: border-color 0.2s ease;
}

.input-group.floating label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #5a6a7e;
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.2s ease;
}

.input-group.floating input:focus + label,
.input-group.floating input:not(:placeholder-shown) + label {
  top: 0.35rem;
  font-size: 0.75rem;
  color: #0b2c4d;
  font-weight: 700;
}

.input-group.floating input:focus {
  border-color: #0b2c4d;
  box-shadow: 0 0 0 3px rgba(11, 44, 77, 0.15);
}

.animated-btn {
  width: 100%;
  padding: 12px;
  margin-top: 0.8rem;
  background-color: #ff6600;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.animated-btn:hover {
  background-color: #e05500;
}

hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #dcdfe6;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #1a2533;
  border: 1px solid #dcdfe6;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.social:hover {
  background-color: #f0f4f8;
}

.social img {
  width: 20px;
  height: 20px;
}

.error {
  background: #ffebee;
  border: 1px solid #ef5350;
  color: #c62828;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}