@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, #2980b9, #8e44ad, #219ba3be,#8510e4);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;     
  overflow: hidden;
  animation: color 12s ease-in-out infinite;
}

@keyframes color{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}

button {
    width: 100%;
    height: 50px;
    background: #2691d9;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #00bcd4;  
    border-color: #00bcd4;      
    transform: scale(1.05);      
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.5);
  }
  label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #b5b5b5;
  }
  
  input[type="password"]{
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 16px;
  }
  
  input[type="password"]:focus{
    outline: none;
    border-color: #00bcd4;
  }

  #home{
    position: absolute;
    top: 20px;
    right: 20px;
  }
  #home img{
    width: 50px;
    height: 50px;
  }
  