
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
  background: linear-gradient(135deg, #fcf8f3 0%, #d4a574 100%);
  min-height: 100vh;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
}

body, .login-card, .login-card h2, .btn-login, .input-group input, .login-footer, .input-icon, .login-footer a {
  font-family: 'Segoe UI', Arial, sans-serif !important;
}

.login-container {
    display: flex;
  justify-content: center;
    align-items: center;
  min-height: 100vh;
} 

.login-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(78, 52, 46, 0.10);
  padding: 40px 32px 32px 32px;
  width: 100%;
  max-width: 400px;
    text-align: center;
  position: relative;
}

.logo img {
  width: 60px;
    margin-bottom: 10px;
}

.login-card h2 {
  font-size: 2rem;
  color: #4E342E;
    margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 3px solid #d4a574;
  display: inline-block;
  padding-bottom: 4px;
}

.input-group {
  margin-bottom: 18px;
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 18px;
  color: #b4845c;
  font-size: 1.1rem;
  z-index: 2;
    }

.input-group input {
        width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1.5px solid #d4a574;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  background: #fcf8f3;
  transition: border 0.2s, background 0.2s;
}

.input-group input:focus {
  border: 1.5px solid #6f4e37;
  background: #fffbea;
}

.btn-login {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #d4a574 0%, #6f4e37 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(180, 132, 92, 0.10);
  transition: background 0.2s;
  letter-spacing: 0.5px;
}

.btn-login:hover {
  background: linear-gradient(90deg, #6f4e37 0%, #d4a574 100%);
  color: #fffbea;
}

.login-separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 28px 0 22px 0;
    color: #8D6E63;
  font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.login-separator span {
  padding: 0 18px;
  background: #f7f9fa;
  border-radius: 8px;
}
.login-separator:before, .login-separator:after {
  content: '';
  flex: 1;
  border-bottom: 1.5px solid #e0d6cf;
  margin: 0 4px;
}

.login-footer {
  color: #4E342E;
  font-size: 1.08rem;
    text-align: center;
    margin-top: 18px;
  background: #f7f9fa;
  border-radius: 12px;
  padding: 18px 0 10px 0;
}
.login-footer a {
  color: #113366;
    font-weight: 600;
  text-decoration: none;
    transition: color 0.2s;
}
.login-footer a:hover {
  color: #4E342E;
    text-decoration: underline;
}
.forgot-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 1.13rem;
}

@media (max-width: 600px) {
  .login-card {
    padding: 24px 8px 24px 8px;
        max-width: 98vw;
    border-radius: 18px;
  }
  .logo img {
    width: 44px;
  }
  .login-card h2 {
    font-size: 1.3rem;
    }
}