/* 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 */
}

/* Login form container */
.login-form {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

/* Labels */
.login-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #444;
}

/* Input fields */
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}

.login-form input:focus {
  border-color: #00cc66;
}

/* Submit button */
.login-form button {
  width: 100%;
  padding: 12px;
  background-color: #00cc66;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-form button:hover {
  background-color: #00a652;
}

/* Signup link */
p {
  text-align: center;
  margin-top: 20px;
  color: white;
}

p a {
  color: #00cc66;
  font-weight: bold;
  text-decoration: none;
}


p a:hover {
  text-decoration: underline;
}
.createAccount {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}
/* Footer */
footer {
  margin-top: 2rem;
  background-color: #72deec80;           
  text-align: center;
  padding: 1rem 0;
  width: 100%;                 
  bottom: 0;                 
  font-weight: bold;        
  font-size: 1rem;         
}
footer p {
  color: white;
}
