* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.navbar {
  background-color: #219ebc;
  width: 100%;
  height: 60px;
  top: 0;
  position: fixed;
  z-index: 1;
}
.navbar button {
  padding: 10px;
  border-radius: 10px;
  border: none;
  background-color: white;
  color: black;
  cursor: pointer;
}
.navbar button a {
  color: black;
  font-size: 14px;
}
.navbar button:hover {
  background-color: aqua;
}
.nav-item {
  padding-top: 8px;
}
.name {
  font-size: 22px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  position: absolute;
  top: 15px;
  left: 30px;
}
.list {
  display: flex;
  justify-content: space-between;
  width: 50%;
  position: absolute;
  right: 90px;
  padding-top: 15px;
  list-style: none;
}
.list a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}
.link {
  position: relative;
  transition: color 0.5s ease;
  padding: 8px 0;
}
.link:hover {
  color: #023047;
}
.link::after {
  position: absolute;
  width: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background-color: #023047;
  transition: width 0.5s ease;
}
.nav-item:nth-child(5) .link::after {
  width: 100%;
}
.list:not(:nth-child(5)) .link:hover::after {
  width: 100%;
}
.navbar button {
  background-color: aqua;
}
/* footer finish */
/* main start */
.container {
  width: 300px;
  height: 320px;
  position: relative;
  text-align: center;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0px 0px 10px 10px #219ebc;
}
h1 {
  margin-top: 10px;
}
.login-form input {
  width: 200px;
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 20px;
}
.form-container {
  width: 200%;
  transition: transform 0.5s ease-in-out 0s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form {
  width: 50%;
}
.login-form button {
  width: 180px;
  padding: 10px;
  background-color: #0000ff;
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
}
.login-form button:hover {
  background-color: rgb(82, 82, 250);
}
.buttons {
  display: flex;
  margin-bottom: 5px;
}
.buttons label {
  text-align: center;
  background-color: #ddd;
  flex-grow: 1;
  padding: 10px;
  cursor: pointer;
}
.buttons label:hover {
  background-color: #ccc;
}
.register-form button {
  width: 180px;
  padding: 10px;
  background-color: #0000ff;
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  margin-top: 20px;
}
.register-form input {
  width: 200px;
  padding: 10px;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 10px;
}
.register-form button:hover {
  background-color: rgb(82, 82, 250);
}
#register:checked ~ .form-container {
  transform: translateX(-50%);
}
.box {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 80px;
}
/* main finish */
/* footer start */

.last-panel {
  width: 100%;
  height: 50px;
  position: relative;
}
.links {
  width: 60%;
  height: 50px;
  display: flex;
  justify-content: right;
}
.links a {
  text-decoration: none;
  color: black;
  margin-left: 50px;
  margin-top: 18px;
}
.contact {
  width: 40%;
  position: absolute;
  right: 0px;
  top: 0;
  padding-left: 50px;
  padding-top: 10px;
}
.contact a {
  margin-left: 20px;
}
