body {
  font-family: Arial, sans-serif;
  background-color: rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /*background: linear-gradient(
    130deg,
    #121212 25%,
    #1a1a1a 25%,
    #1a1a1a 50%,
    #121212 50%,
    #121212 75%,
    #1a1a1a 75%,
    #1a1a1a
  );*/

/*  background-image: linear-gradient(to left, skyblue -20%, black 10%, #00334D 80%, black 100%) ;*/
  background-size: 40px 40px;
  animation: move 4s linear infinite;
  background: linear-gradient(135deg, #00308F, #0066CC, #002673, #003AAD);
  background-size: 200% 200%;
  animation: glacierBackground 10s ease infinite;
}
@keyframes glacierBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}*/
.menu-icon {
    cursor: pointer;
    font-size: 24px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    color: white;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 70px;
    width: 0; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: width 0.3s ease; 
    z-index: 999;
    overflow: hidden;
}
.header.active {
    width: 350px; 
}
.nav {
  padding: 20px 0;
}

.nav a {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  color: silver;

}
.nav a:hover{
  background-color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  border-bottom: 1px solid gray;
  color: orange;
}
.checkbox-wrapper-41 {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 1000;
}
.container {
  padding: 20px;
  border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 
                0 2px 4px rgba(255, 255, 255, 0.2) inset;
    padding: 20px;
  width:  400px;
  text-align: center;
  color: white;
}
.container:hover{
}

h1 {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
  transition: 300ms ease-in-out;
}
input::focus{
  transform: scale(1.05);
  box-shadow: 13px 13px 100px #969696,
  -13px -13px 100px #ffffff;
}

input::placeholder {
    opacity: 0.4;
}
#booking-form input{
  padding: 5px;
}

button {
  --color: #00A97F;
 --color2: rgb(10, 25, 30);
 padding: 10px 20px;
 background-color: white;
 border-radius: 6px;
 border: .3px solid var(--color);
 transition: .5s;
 position: relative;
 margin-top: 30px;
 overflow: hidden;
 cursor: pointer;
 z-index: 1;
 font-weight: 300;
 font-size: 16px;
 font-family: 'Roboto', 'Segoe UI', sans-serif;
 text-transform: uppercase;
 color: var(--color);
}
button::after, button::before {
 content: '';
 display: block;
 height: 100%;
 width: 100%;
 transform: skew(90deg) translate(-50%, -50%);
 position: absolute;
 inset: 50%;
 left: 25%;
 z-index: -1;
 transition: .5s ease-out;
 background-color: var(--color);
}

button::before {
 top: -50%;
 left: -25%;
 transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

button:hover::before {
 transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

button:hover::after {
 transform: skew(45deg) translate(-50%, -50%);
}

button:hover {
 color: white;

}

button:active {
 filter: brightness(.2);
 transform: scale(.32);
}

#registration-form label{
  text-align: left;
  color: silver;
}
#login-form label{
  text-align: left;
}

#booking-status {
  margin-top: 20px;
  font-weight: bold;
}
#booking-form label{
  text-align: left;
  color: silver;
}
#time{
}
#booking-status{
  text-align: left;
}
#booking-status p{
  font-weight: normal;
  border-bottom: 0.5px solid gray;
  padding-bottom: 5px;
}
#booking-section{
  position: relative;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  transition: 0.5s;
  color: skyblue;
}
#detail{
  text-align: center;
  font-size: 20px;
  color: lightgreen;
  font-weight: bold;
}

.password-container {
    position: relative;
  }

  .password-container span {
    position: absolute;
    right: 10px;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
  }

.checkbox-wrapper-41 {
  --size: 50px;
  margin: 10px;
}

.checkbox-wrapper-41 input[type="checkbox"] {
  -webkit-appearance: none;
  width: var(--size);
  height: calc(var(--size) / 2);
  background-color: white;
  border: 3px solid #222;
  border-radius: 30px 100px 100px 100px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}

.checkbox-wrapper-41 input[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: calc(var(--size) / 2);
  height: calc(var(--size) / 2);
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  border: 3px solid #222;
  border-radius: 30px 100px 100px 100px;
  background-color: black;
  box-sizing: border-box;
  transition: all 0.5s;
}

.checkbox-wrapper-41 input[type="checkbox"]:checked {
  background-color: black;
  border-radius: 100px 100px 30px 100px;
  border: 1px solid gray;
}

.checkbox-wrapper-41 input[type="checkbox"]:checked::before {
  left: 50%;
  background-color: #fff;
  border-radius: 100px 100px 30px 100px;
}
.chat-icon {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
  }

  .chat-icon:hover{
    background-color: blue;
  }
  #chatbox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 500px;
    height: 600px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
    overflow-y: auto;
    padding: 20px;
    z-index: 999;
  }
  #messages .bot::before {
    content: "\f2c0";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin: 0 5px;
    color: green;
    font-size: 15px;
  }
  #messages .user::before {
    content: 'myMessage: ';
    font-weight: normal;
    color: silver;
  }
  .header-text {
    font-size: 20px;
    color: white;
    font-weight: bold;
    overflow: hidden;
    animation: typing 0.4s steps(70, end), blink 0.8s infinite;
    text-align: center;
    padding-bottom: 20px;
  }
  #terms-section {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    width: 50%;
    height: 100%;
    border-radius: 8px;
    text-align: left;
    z-index: 999;
}

#close-terms {
    margin-top: 10px;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}
#out{
}

  @keyframes typing {
    from { width: 0%; }
    to { width: 100%; }
  }

  input { width: 100%; padding: 8px; margin-top: 10px; }
  .user { color: white; }
  .bot { color: lightgreen; }
  .user { font-size: 15px; }
  .bot { font-size: 15px; }
  .user {font-weight: bold;}
  .user {text-shadow: 0 0 5px black;}
  .bot { padding-left:20px }


  









/*
--------------------------------------------------------------------------------------------------------
*/
@media (max-width: 800px){
    .header.active {
      width: 100%; 
  }
}
/*
------------------------------------------------------------------------------------
*/
@media (max-width: 600px) {
  body{
     background: linear-gradient(135deg, #003AAD, #0066CC, #002673, #005F99, #88CCFF, #E0F7FF);
  }

  .header{
    background-color: rgba(0, 0, 0, 0.9);
  }
  .nav a:hover{
    background-color: white;
    color: black;
    border-bottom: 0px;
  }


  .header.active {
    width: 100%; 
}
  .container {
    width: 80%;
    padding: 15px;
    margin-top: -100px;
  }

  input {
    font-size: 14px;
    padding: 8px;
  }

  button {
    font-size: 14px;
    padding: 8px 15px;
  }
  .checkbox-wrapper-41 {
    top: 10px;
    right: 10px;
}

  .checkbox-wrapper-41 {
    --size: 50px;
  }

  .checkbox-wrapper-41 input[type="checkbox"] {
    width: var(--size);
    height: calc(var(--size) / 2);
  }

  .checkbox-wrapper-41 input[type="checkbox"]::before {
    width: calc(var(--size) / 2);
    height: calc(var(--size) / 2);
  }
  .chat-icon {
    width: 30px;
    padding: 10px;
    height: 30px;
    bottom: 0;
  }
  #booking-section h1{
    font-size: 20px;
  }
  a{
    color: yellow;

  }

  #chatbox{
    width: 80%;
    height: 300px;
  }
  .header-text {
    white-space: wrap;
    font-size: 1rem;
  }
  input { width: 100%; padding: 8px; margin-top: 10px; }
  .user { font-size: 13px; }
  .bot { font-size: 13px; }
  
}
