/* Global Styles */
body {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cards */
.register-card,
.login-card {
  background: #ffffffcc;
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2.5rem;
  /*border: 1px solid #e0e0e0;*/
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Form Controls */
.form-control {
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

/* Text Links */
.text-center a {
  color: #007bff;
  text-decoration: none;
}

.text-center a:hover {
  text-decoration: underline;
}