body {
  font-family: "Helvetica";
}

.img1 {

height: 40px;
margin-left: 10px;
}



.img1 {
    opacity: 0;
    transform: translateY(80px);
    animation: moveup 0.5s linear forwards ;
}
@keyframes moveup {
    100% {
        opacity: 1;
transform: translateY(0px);
    }
}




@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body, html {
  height: 100%;
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.login {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.sky-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ffecd2, #fcb69f, #a1c4fd, #c2e9fb);
  background-size: 400% 400%;
  animation: skyMove 15s ease infinite;
  z-index: -2;
}

@keyframes skyMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.plane-float {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 60px;
  animation: floatPlane 6s ease-in-out infinite;
  z-index: -1;
  opacity: 0.7;
}

@keyframes floatPlane {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.loginform {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 16px;
  width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
}

.login-title {
  font-size: 26px;
  color: #1a237e;
  margin-bottom: 10px;
}

.login-sub {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.login-form-content {
  display: flex;
  flex-direction: column;
}

.logininput {
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.logininput:focus {
  border-color: #ff5722;
  box-shadow: 0 0 6px rgba(255, 87, 34, 0.4);
  outline: none;
}

.login-button {
  padding: 14px;
  background-color: #ff5722;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(255, 87, 34, 0.3);
}

.login-button:hover {
  background-color: #e64a19;
  transform: scale(1.05);
}

.login-links {
  margin-top: 15px;
  font-size: 13px;
}

.login-links a {
  color: #1a237e;
  text-decoration: none;
}

.login-links a:hover {
  text-decoration: underline;
}
