/* login.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f5f5;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #111827;
}

.site-header {
  background: #f97316; /* orange */
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
}

.site-header .logo {
  height: 50px;
  width: auto;
}

.login-container {
  background: #fff;
  max-width: 400px;
  margin: 40px auto;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
}

.login-container h1 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  color: #f97316;
}

.login-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1.8px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: #f97316;
  outline: none;
}

.btn-login {
  width: 100%;
  background: #f97316;
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background: #d8640e;
}

.form-links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.form-links a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-links a:hover {
  color: #d8640e;
}

.social-login {
  margin-top: 30px;
  text-align: center;
}

.social-login p {
  margin-bottom: 12px;
  color: #666;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eee;
  border: none;
  border-radius: 5px;
  padding: 10px 18px;
  margin: 0 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  color: #111827;
}

.btn-social img {
  height: 22px;
  width: 22px;
}

.btn-social.google:hover {
  background: #de5246;
  color: white;
}

.btn-social.facebook:hover {
  background: #3b5998;
  color: white;
}

@media (max-width: 480px) {
  .login-container {
    margin: 20px 15px;
    padding: 25px 20px;
  }

  .btn-social {
    width: 120px;
    margin: 10px 5px;
  }
}
