body {
  margin: 0;
  font-family: sans-serif;
  background:#0077b6;
  color;#fffff
}

.navbar {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 10px;
  background: transparent;
  border-bottom-right-radius: 12px;
  z-index: 999;
}

.menu {
  position: relative;
  width: 130px;
  height: 130px;
}


.menu li {
  position: absolute;
  top: 50%;
  left: 50%;
  list-style: none;
  transform-origin: 0 0;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.3s ease;

}

.menu.active li {
 transform: rotate(calc(360deg / 4 * var(--i))) translate(55px) rotate(calc(-360deg / 4 * var(--i)));
  opacity: 1;
}

.toggle {
   position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: #000000;
  color: aliceblue;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  z-index: 10;
  transition: transform 1.12s;
}

.menu.active .toggle {
  transform: translate(-50%, -50%) rotate(315deg);
}

.menu li a {
  color: rgb(0, 0, 0);
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.blink {
  animation: blink 5s infinite;
  color: #ffffff; /* or any color you like */
  font-weight: bold;
  font-size: 1.2em;
  padding-left: 35px;
}
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.container {
  max-width: 1000px;
  margin: 100px auto 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
}
.footer {
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #fff;
  position: relative;
  bottom: 0;
  margin-top: 50px;
  font-size: 0.9em;
}
form {
  border: 3px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  background: transparent; 
  border-radius: 12px;
  color: white;
  box-sizing: border-box;
}

.portal_container{
     max-width: 400px;
  margin: 100px auto 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  text-align: center;
}
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}
img.avatar {
  width: 40%;
  border-radius: 50%;
}
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0 16px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0 16px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  font-size: 1em;
  transition: opacity 0.3s ease;
}
button:hover {
  opacity: 0.8;
}
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
  border-radius: 6px;
}
label > input[type=checkbox] {
  margin-right: 10px;
}
.form-footer {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 0.9em;
}
.psw a {
  color: #ddd;
  text-decoration:
  .psw a:hover {
  text-decoration: underline;
} none;
}
@media screen and (max-width: 400px) {
  .container {
    margin: 50px 10px 0 10px;
  }
  .form-footer {
    flex-direction: column;
    gap: 10px;
  }
}