/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #2f4f4f, #0e1a2b);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Clickable Logo */
.image-link img {
  width: 180px;
  margin: 10px 0;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-link img:hover {
  transform: scale(1.05);
}

/* Contact Info Animation */
.animated-text {
  display: flex;
  gap: 30px;
  animation: slide-in 1.5s ease forwards;
  opacity: 0;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}

.text-item:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Login Container */
.login-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

/* Login Form */
.login-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 600;
}

.login-form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  background: #ffffffcc;
  font-size: 16px;
  color: #333;
}

.login-form input:focus {
  outline: 2px solid #1abc9c;
}

/* Login Button */
.login-form button {
  width: 100%;
  padding: 12px;
  background: #1abc9c;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background: #16a085;
}

/* Social Icons */
.social-icons {
  text-align: center;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #1abc9c;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 480px) {
  .login-container {
    padding: 25px;
  }

  .text-item {
    font-size: 14px;
  }
}
  