/* accounts/style.css */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #71b7e6, #9b59b6);
}

/* ===== Container ===== */
.main {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Login Form ===== */
.login form {
  display: flex;
  flex-direction: column;
}

.login label {
  font-size: 2rem;
  color: #884ea0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.login input {
  height: 45px;
  margin: 10px 0;
  padding: 0 15px;
  border: 2px solid #e0d6eb;
  border-radius: 10px;
  background: #fff;
  outline: none;
  font-size: 1rem;
  transition: 0.3s ease;
}

.login input:focus {
  border-color: #9b59b6;
  box-shadow: 0 0 6px rgba(155, 89, 182, 0.3);
}

/* ===== Button ===== */
.login button {
  margin-top: 20px;
  height: 45px;
  border: none;
  border-radius: 10px;
  background: #9b59b6;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.login button:hover {
  background: #884ea0;
  transform: translateY(-1px);
}

/* ===== Error Message ===== */
.login p {
  margin-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: red;
}

/* ===== Responsif ===== */
@media (max-width: 480px) {
  .main {
    padding: 30px 20px;
  }
  .login label {
    font-size: 1.6rem;
  }
}
