/* ================= Livees Modern Login Page ================= */

/* BRAND */
.brand-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-decoration: none;
}

body#signinform {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.signin {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.container-form {
  width: 340px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: all 0.4s ease;
}

.container-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.logo h2 {
  font-weight: 900;
  color: #222222;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heading h3 {
  font-weight: 700;
  color: #444444;
  margin-bottom: 25px;
}

.label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-align: left;
  margin-bottom: 6px;
  color: #666666;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #222222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.btnarea {
    margin-top: 20px;
    display: flex;
    justify-content: space-between; /* buttons side by side with space */
    gap: 10px; /* optional: space between buttons */
}

.btn {
    flex: 1; /* buttons take equal width */
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.btn-dark {
    background: linear-gradient(90deg, #222222, #444444);
    border: none;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background: linear-gradient(90deg, #444444, #222222);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #aaaaaa;
    border: none;
    color: #fff;
}

.btn-secondary:hover {
    background: #888888;
    transform: translateY(-2px);
}


p {
  font-size: 12px;
  color: #555555;
  margin-top: 10px;
}

p strong {
  color: #222222;
}

/* Responsive for mobile */
@media screen and (max-width: 720px) {
  .container-form {
    width: 90%;
    padding: 30px 20px;
    margin: 40px auto;
  }
}
