@import url(style.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, rgba(30, 81, 40, 0.5) 0%, rgba(44, 122, 63, 0.5) 50%, rgba(78, 159, 94, 0.5) 100%), url('/pictures/bansud.jpg') center/cover no-repeat fixed;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-container {
  width: 100%;
  max-width: 500px;
}

.login-header {
  text-align: center;
  color: white;
  margin-bottom: 2rem;
}

.login-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  object-fit: contain;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.login-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.login-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.selection-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-inner {
  padding: 3rem 2rem;
}

.selection-card h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.card-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.login-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-option {
  display: block;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.login-option h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.login-option p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.admin-option {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.admin-option:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.admin-option h3 {
  color: white;
}

.user-option {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.user-option:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.user-option h3 {
  color: white;
}

@media (max-width: 600px) {
  .login-header h1 {
    font-size: 1.5rem;
  }

  .login-logo {
    width: 100px;
    height: 100px;
  }

  .card-inner {
    padding: 2rem 1.5rem;
  }

  .selection-card h2 {
    font-size: 1.4rem;
  }

  .login-option {
    padding: 1.2rem;
  }
}
