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

body {
  font-family: Arial, sans-serif;
}


nav {
  display: flex;
  justify-content: flex-start; 
  align-items: center;
  background-color: #283952;
  padding: 10px 20px;
  color: white;
}

nav .logo {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo img {
  width: 44px;
  margin-right: 10px;
}

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

nav .nav-links li {
  margin: 0 20px;
}

nav .nav-links a {
  text-decoration: none;
  font-size: large;
  color: rgb(241, 231, 231);
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 3px 0;
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 20px;
    background: #333;
    border-radius: 8px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 60px);
  background: url("../images/bubble.png");
  background-size: cover;
  background-position: center;
}

.login-wrapper {
  background-color: #283952;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
  width: 100%;
  max-width: 400px;
}

.login-wrapper h2 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  color: #c1c1c1;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background: #ddd;
  text-align: center;
}

.input-group input:focus {
  background: #f0f0f0;
}

.login-btn {
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #0095a8;
}

.error-message {
  color: red;
  margin-top: 10px;
}


.verify-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;            
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.verify-modal-content {
  background-color: #283952;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
  width: 100%;
  max-width: 400px;
  position: relative; 
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
}


.verify-btn {
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.verify-btn:hover {
  background-color: #0095a8;
}
