* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   background: linear-gradient(135deg, #517EA6, #517EA6,#BBD8F2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  color: #fff;
}

h1 {
  margin-bottom: 50px;
  font-size: 28px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  text-align: center;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #e0e0e0;
  text-align: left;
}

input[type="text"] {
  width: 100%;
  padding: 12px 8px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-bottom: 50px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="text"]:focus {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

button {
    
  width: 100%;
  padding: 12px;
  background-color: #fff;
  color: #4c505c;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #ddd;
  transform: translateY(-2px);
}
a {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 600px) {
  body {
    padding: 10px;
    flex-direction: column;
  }

  h1 {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
  }

  label {
    font-size: 16px;
  }

  input[type="text"] {
    font-size: 14px;
    padding: 10px 6px;
    margin-bottom: 30px;
  }

  button {
    font-size: 14px;
    padding: 10px;
  }

  a {
    font-size: 14px;
    display: block;
    margin-top: 15px;
    text-align: center;
  }
}
