/* Reset some default browser styles */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f8;
  color: #00ff66;
  line-height: 1.6;
  background-image: url('/css/img/background4.jpg'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  background-attachment: fixed;

}
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: transparent; 
}
.content-wrap {
  flex: 1;
}

/*Navigation bar */
/* Header / Nav */
header {
  background: rgba(0,0,0,0);
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  transition: background 0.5s ease;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container nav {
  display: flex;
  gap: 30px;
}

/* Navigation buttons */
.nav-container nav a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;           
  background-color: #00ff66;     
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* Hover effect for nav buttons */
.nav-container nav a:hover {
  background-color: #72deec80;
  transform: scale(1.05);        
  box-shadow: 0 4px 15px rgba(9, 246, 49, 0.975); /* Glow effect */
}

/* Registration form container */
.register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  max-width: 90%;
  margin: 60px auto;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #048495ae;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.register-form h1 {
  margin-bottom: 25px;
  color: #00ff66;
  font-size: 28px;
  text-align: center;
}

/* Form elements */
.register-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group input {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: #00cc66;
  box-shadow: 0 0 5px rgba(0, 204, 102, 0.3);
}

/* Button */
.form-group button {
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  background-color: #00ff66;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-group button:hover {
  background-color: #72deec80;
}
.form-group select {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s ease;
  background-color: #fff;
}

.form-group select:focus {
  border-color: #00cc66;
  box-shadow: 0 0 5px rgba(0, 204, 102, 0.3);
}
/* Footer */
footer {
  margin-top: 2rem;
  background-color: #1e2a38; /* dark background */
  color: #ffffff;            /* white text */
  text-align: center;
  padding: 1rem 0;
  width: 100%;               /* make it full width */       /* keeps it in normal flow; use fixed only if you want it always visible */
  bottom: 0;                 /* used if position: fixed */
  font-weight: bold;          /* optional: make text bold */
  font-size: 1rem;            /* optional: adjust size */
}


p {
  text-align: center;
  margin-top: 15px;
}

p a {
  color: #00cc66;
  text-decoration: none;
  font-weight: bold;
}

p a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 2rem;
  background-color: #72deec80;
  color: #ffffff;            /* white text */
  text-align: center;
  padding: 1rem 0;
  width: 100%;               /* make it full width */       /* keeps it in normal flow; use fixed only if you want it always visible */
  bottom: 0;                 /* used if position: fixed */
  font-weight: bold;          /* optional: make text bold */
  font-size: 1rem;            /* optional: adjust size */
}
