* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #4e1002, #7A1531);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 480px;
  margin-top: 0px;
  padding: 0 20px;
}

#logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  object-fit: cover;
}

#logoContainer {
  display: flex;
  justify-content: center;
}

.elite-badge {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-box {
  background: #f5f5dc;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(8px);
}

h1 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: #4e0021;
  font-weight: 600;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-field input, .input-field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #C2B9C0;
  background-color: #fff;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.input-field input:focus, .input-field textarea:focus {
  border-color: #7A1531;
  box-shadow: 0 0 5px rgba(122, 21, 49, 0.3);
  outline: none;
}

.btn-field {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.form_button {
  flex: 1;
  padding: 14px;
  border: none;
  background-color: #7A1531;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease;
}

.form_button:hover {
  background-color: #5e0f25;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(122, 21, 49, 0.4);
}

.form_button:active {
  transform: scale(0.98);
}

a {
  color: #7A1531;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

.form-box, .elite-badge, #logoContainer, .footerContainer {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.footerContainer {
  width: 100%;
  padding-top: 30px;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footerContainer {
  margin-top: auto;
}
