/* --- Global Styles & Variables (From your theme) --- */
:root {
  --primary-bg: #02141f;
  --secondary-bg: #111827;
  --accent-color: #00b4d8;
  --text-color: #f4f4f4;
  --white-color: #ffffff;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  color: var(--text-color);
  line-height: 1.6;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* --- Signup Card (Glassmorphism Style) --- */
.signup-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.home-logo {
  display: block;
  margin: 0 auto 20px;
  width: 60px;
}
.home-logo img {
  width: 100%;
  border-radius: 50%;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
}

.signup-card p {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 30px;
}

/* --- Form Elements --- */
form {
  display: flex;
  flex-direction: column;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  opacity: 0.5;
}

.input-group input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background-color: rgba(0, 109, 119, 0.3);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 8px;
  color: var(--white-color);
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input::placeholder {
  color: var(--text-color);
  opacity: 0.6;
}

.input-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.9rem;
}
.terms label {
  color: var(--text-color);
  opacity: 0.8;
}
.terms a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.terms a:hover {
  color: #4ecce3;
}
.terms input[type="checkbox"] {
  accent-color: var(--accent-color);
  width: 15px;
  height: 15px;
}

.signup-button {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.2);
  transition: all 0.3s ease;
}

.signup-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
}

.signup-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 180, 216, 0.557);
}

.signup-button:hover {
  background-color: #4ecce3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.login-link {
  margin-top: 30px;
}

.login-link p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.login-link a {
  color: var(--accent-color);
  font-weight: 600;
  transition: text-decoration 0.3s ease;
}

.login-link a:hover {
  text-decoration: underline;
}
