body {
  font-family: "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 0 20px #d36e964b;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h2 {
  color: #333;
  margin-bottom: 1.5rem;
}

img{
    width: auto;
    height: 50px;    
}


input {
  width: 100%;
  display: flex;
  padding: 10px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  background: #5b95fa;
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

button:hover {
  background: #7462df;
}

.error {
  color: #e63946;
  background: #ffe3e3;
  padding: 0.5rem;
  border-radius: 8px;
}

a {
  color: #8356ec;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: none;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: #5886d4;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.logout {
  background: #e63946;
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.4rem;
  }

  button {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .chip { display: none; }
}