* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #7d2181;
  --primary-light: #9c41a0;
  --white: #ffffff;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(
    rgba(125, 33, 129, 0.75), 
    rgba(156, 65, 160, 0.75)
  ), url('3526149246_f7387ecbb5_b.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  width: 80px;
  height: 80px;
}

header h1 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 1rem;
}

.login-form {
  padding: 1rem;
}

.login-form h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

input {
  width: 100%;
  padding: 0.8rem;
  padding-left: 2.5rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: var(--primary-color);
  outline: none;
}

input:focus + i {
  color: var(--primary-color);
}

button {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--primary-light);
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }
  
  header h1 {
    font-size: 1.2rem;
  }


}