/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6fa url('background-pattern.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background: #0b1a3a;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav-links a:hover {
  color: #00bfff;
}

/* Form Section */
.form-container {
  background: white;
  max-width: 400px;
  margin: auto;
  margin-top: 60px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.form-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.form-container .subtitle {
  color: #666;
  margin-bottom: 25px;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

form input:focus {
  border-color: #00bfff;
  outline: none;
}

.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: linear-gradient(to right, #0072ff, #00c6ff);
}

.switch {
  margin-top: 20px;
  color: #555;
}

.switch a {
  color: #0072ff;
  text-decoration: none;
  font-weight: 500;
}

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

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6fa url('images/background-pattern.png') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background: #0b1a3a;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 35px;
  margin-right: 10px;
}

.site-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00bfff;
}

/* Navbar Buttons */
.btn-nav {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #00bfff;
  transition: 0.3s;
}

.btn-nav:hover {
  background: #00bfff;
  color: white !important;
}

.btn-highlight {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  border: none;
  color: white !important;
}

.btn-highlight:hover {
  background: linear-gradient(to right, #0072ff, #00c6ff);
}

/* Form Section */
.form-container {
  background: white;
  max-width: 400px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.form-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.form-container .subtitle {
  color: #666;
  margin-bottom: 25px;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

form input:focus {
  border-color: #00bfff;
  outline: none;
}

.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: linear-gradient(to right, #0072ff, #00c6ff);
}

.switch {
  margin-top: 20px;
  color: #555;
}

.switch a {
  color: #0072ff;
  text-decoration: none;
  font-weight: 500;
}

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