* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

body {
  min-height: 100vh;
  background: #b08d57;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Top icons */
.top-icons {
  position: absolute;
  top: 20px;
  right: 20px;
}

.top-icons button {
  background: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 8px;
}

/* Card */
.login-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-card {
  background: #fff;
  width: 380px;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.logo-img{
  width:150px;
  align-items: center;
}


.logo { font-size: 24px; font-weight: 800; color: #333; }
.logo span { color: #b08d57; }
.logo {
  text-align: center;
  color: #7b2ff7;
  margin-bottom: 10px;
}

.login-card h3 {
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 25px;
}

label {
  font-size: 14px;
  margin-top: 15px;
  display: block;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Password */
.password-box {
  position: relative;
}

.password-box span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Options */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.options a {
  color: #7b2ff7;
  text-decoration: none;
  font-size: 14px;
}

/* Button */
.btn {
  width: 100%;
  background: #b08d57;;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background: #000;
}

.signup {
  text-align: center;
  margin-top: 15px;
}

.signup a {
  color: #7b2ff7;
  text-decoration: none;
}

footer {
  margin-top: 20px;
  font-size: 13px;
  color: #eee;
}


/* ================Back to Home================== */

.back-home {
  display: inline-block;
  margin-bottom: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.back-home:hover {
  text-decoration: underline;
}
