/* =============================================
   LOGIN PAGE STYLES
   Extracted from restaurante/login.html inline <style>
   ============================================= */

:root {
  --qenta-dark: #141433;
  --qenta-purple: #8e01fb;
  --qenta-blue: #455ffd;
  --qenta-gradient: linear-gradient(135deg, var(--qenta-purple), var(--qenta-blue));
  --qenta-bg: #f2f2f2;
  --qenta-white: #ffffff;
}

body.qenta-login-page {
  font-family: 'Poppins', sans-serif !important;
  background-color: var(--qenta-bg) !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.qenta-login-page .navbar,
body.qenta-login-page .navbar-secondary {
  display: none !important;
}

body.qenta-login-page .container.mt-4 {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.qenta-login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.qenta-login-card {
  display: flex;
  width: 100%;
  max-width: 860px;
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  background: var(--qenta-white);
}

.qenta-login-left {
  flex: 1.1;
  padding: 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f7f7f7;
}

.qenta-logo {
  max-width: 160px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.qenta-welcome-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--qenta-dark);
  margin: 0;
  line-height: 1;
}

.qenta-welcome-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--qenta-dark);
  margin-top: 0.1rem;
  margin-bottom: 2rem;
}

.qenta-form-group {
  margin-bottom: 1rem;
  position: relative;
}

.qenta-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.qenta-input-wrapper input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--qenta-dark);
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.qenta-input-wrapper input::placeholder {
  color: #9e9e9e;
  font-weight: 300;
}

.qenta-input-wrapper input:focus {
  border-color: #bdbdbd;
}

.qenta-toggle-password {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #424242;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  transition: color 0.2s;
}

.qenta-btn-container {
  display: flex;
  justify-content: center;
}

.qenta-btn-login {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: var(--qenta-dark);
  color: var(--qenta-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qenta-btn-login:hover {
  background: #1c1c45;
  transform: scale(1.01);
}

.qenta-login-right {
  flex: 0.9;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: var(--qenta-gradient);
}

.qenta-right-text {
  position: relative;
  z-index: 2;
  color: var(--qenta-white);
}

.qenta-right-text p {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

.qenta-brand-url {
  font-weight: 300;
  font-size: 0.95rem;
  opacity: 1;
}

.qenta-brand-url strong {
  font-weight: 800;
}

.qenta-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.qenta-modal-overlay.active {
  display: flex;
}

.qenta-modal-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 40px;
  padding: 3rem 2rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: qenta-modal-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes qenta-modal-bounce {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.qenta-modal-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3px;
  background: var(--qenta-gradient);
}

.qenta-modal-icon-circle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.qenta-modal-icon-circle i {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  background: var(--qenta-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qenta-modal-card h3 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #000;
}

.qenta-modal-card p {
  font-weight: 400;
  font-size: 0.95rem;
  color: #000;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .qenta-login-card {
    flex-direction: column;
    max-width: 100%;
    margin: 10px;
  }

  .qenta-login-left {
    padding: 2rem;
  }

  .qenta-login-right {
    display: none;
  }
}
