/* ===== Login Page ===== */
/* line 4, app/assets/stylesheets/temas/public.scss */
#login-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 9999;
}

/* line 14, app/assets/stylesheets/temas/public.scss */
.login-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.45);
  z-index: 0;
}

/* line 26, app/assets/stylesheets/temas/public.scss */
.login-bg-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  filter: none;
}

/* line 31, app/assets/stylesheets/temas/public.scss */
.login-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/* line 42, app/assets/stylesheets/temas/public.scss */
.login-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 48px 40px 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: cardAppear 0.6s ease-out;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 64, app/assets/stylesheets/temas/public.scss */
.login-logo {
  text-align: center;
  margin-bottom: 28px;
}

/* line 68, app/assets/stylesheets/temas/public.scss */
.login-logo img {
  max-height: 92px;
  max-width: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 75, app/assets/stylesheets/temas/public.scss */
.login-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e !important;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* line 84, app/assets/stylesheets/temas/public.scss */
.login-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 28px;
  font-weight: 400;
}

/* line 92, app/assets/stylesheets/temas/public.scss */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 98, app/assets/stylesheets/temas/public.scss */
.login-field {
  position: relative;
}

/* line 102, app/assets/stylesheets/temas/public.scss */
.login-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}

/* line 114, app/assets/stylesheets/temas/public.scss */
.login-input::-moz-placeholder {
  color: #9ca3af;
}
.login-input::placeholder {
  color: #9ca3af;
}

/* line 118, app/assets/stylesheets/temas/public.scss */
.login-input:focus {
  border-color: #f59e0b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* line 125, app/assets/stylesheets/temas/public.scss */
.login-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9ca3af;
  pointer-events: none;
}

/* line 136, app/assets/stylesheets/temas/public.scss */
.login-field:focus-within .login-icon {
  color: #f59e0b;
}

/* line 140, app/assets/stylesheets/temas/public.scss */
.login-flash {
  min-height: 0;
}

/* line 143, app/assets/stylesheets/temas/public.scss */
.login-flash .alert {
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* line 152, app/assets/stylesheets/temas/public.scss */
.login-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

/* line 166, app/assets/stylesheets/temas/public.scss */
.login-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

/* line 172, app/assets/stylesheets/temas/public.scss */
.login-btn:active {
  transform: translateY(0);
}

/* line 177, app/assets/stylesheets/temas/public.scss */
.login-help {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* line 183, app/assets/stylesheets/temas/public.scss */
.login-help a {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
}

/* line 188, app/assets/stylesheets/temas/public.scss */
.login-help a:hover {
  color: #d97706;
  text-decoration: underline;
}

/* line 195, app/assets/stylesheets/temas/public.scss */
.login-welcome {
  margin-top: 16px;
  padding: 12px 16px;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.5;
  text-align: center;
}

/* line 206, app/assets/stylesheets/temas/public.scss */
.login-footer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  /* line 216, app/assets/stylesheets/temas/public.scss */
  .login-card {
    padding: 36px 24px 28px;
    border-radius: 12px;
  }
  /* line 221, app/assets/stylesheets/temas/public.scss */
  .login-logo img {
    max-height: 60px;
  }
  /* line 225, app/assets/stylesheets/temas/public.scss */
  .login-title {
    font-size: 1.3rem;
  }
}

/* ===== Dark Mode Theme ===== */
/* line 232, app/assets/stylesheets/temas/public.scss */
.login-dark .login-card {
  background: rgba(30, 30, 30, 0.92);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* line 237, app/assets/stylesheets/temas/public.scss */
.login-dark .login-title {
  color: #f0f0f0 !important;
}

/* line 241, app/assets/stylesheets/temas/public.scss */
.login-dark .login-subtitle {
  color: #a0a0a0;
}

/* line 245, app/assets/stylesheets/temas/public.scss */
.login-dark .login-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f0f0f0;
}

/* line 250, app/assets/stylesheets/temas/public.scss */
.login-dark .login-input::-moz-placeholder {
  color: #777;
}
.login-dark .login-input::placeholder {
  color: #777;
}

/* line 254, app/assets/stylesheets/temas/public.scss */
.login-dark .login-input:focus {
  border-color: #4ade80;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

/* line 261, app/assets/stylesheets/temas/public.scss */
.login-dark .login-icon {
  color: #666;
}

/* line 265, app/assets/stylesheets/temas/public.scss */
.login-dark .login-field:focus-within .login-icon {
  color: #4ade80;
}

/* line 269, app/assets/stylesheets/temas/public.scss */
.login-dark .login-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* line 272, app/assets/stylesheets/temas/public.scss */
.login-dark .login-btn:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

/* line 278, app/assets/stylesheets/temas/public.scss */
.login-dark .login-help {
  color: #999;
}

/* line 281, app/assets/stylesheets/temas/public.scss */
.login-dark .login-help a {
  color: #4ade80;
}

/* line 284, app/assets/stylesheets/temas/public.scss */
.login-dark .login-help a:hover {
  color: #22c55e;
}

/* line 290, app/assets/stylesheets/temas/public.scss */
.login-dark .login-welcome {
  background: rgba(255, 255, 255, 0.06);
  color: #ccc;
}

/* ===== End Login Page ===== */
/* ===== Legacy styles below ===== */
/* line 300, app/assets/stylesheets/temas/public.scss */
#page-footer {
  border-top: 1px solid #eeeeee;
  margin-top: -50px;
  padding-top: 12px;
}

/* line 306, app/assets/stylesheets/temas/public.scss */
a {
  color: #f59e0b;
}

/* line 310, app/assets/stylesheets/temas/public.scss */
a:focus,
a:hover {
  color: #ff3d2d;
}

/* line 315, app/assets/stylesheets/temas/public.scss */
#main-wrapper {
  min-height: 92vh;
}

/* line 319, app/assets/stylesheets/temas/public.scss */
.btn-default {
  color: #fff;
  background-color: #f59e0b;
  border-color: #f59e0b;
  font-weight: 600;
}

/* line 326, app/assets/stylesheets/temas/public.scss */
.btn-default:hover {
  color: #fff;
  background-color: #ff3d2d;
  border-color: #ff3d2d;
}

/* line 332, app/assets/stylesheets/temas/public.scss */
.oculta-public {
  display: none;
}

/* line 336, app/assets/stylesheets/temas/public.scss */
.hide {
  display: none;
}

/* Custom default button */
/* line 341, app/assets/stylesheets/temas/public.scss */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none;
  background-color: #fff;
  border: .05rem solid #fff;
}

/* line 350, app/assets/stylesheets/temas/public.scss */
.btn-secondary:hover {
  color: #222 !important;
}

/* line 354, app/assets/stylesheets/temas/public.scss */
.hidden {
  display: none;
}

/* line 356, app/assets/stylesheets/temas/public.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "OpenSans", "Roboto" !important;
  font-weight: 600 !important;
  color: #424242 !important;
}

/* line 362, app/assets/stylesheets/temas/public.scss */
html,
body {
  height: 100%;
  background-color: #333;
}

/* line 367, app/assets/stylesheets/temas/public.scss */
body {
  color: #fff;
  text-align: center;
}

/* line 372, app/assets/stylesheets/temas/public.scss */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #43435f;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

/* line 373, app/assets/stylesheets/temas/public.scss */
.site-wrapper .masthead {
  box-shadow: 0px 5px 20px #000000;
}

/* line 385, app/assets/stylesheets/temas/public.scss */
.site-wrapper-inner {
  display: table-cell;
  overflow: hidden;
  vertical-align: top;
  height: 100vh;
}

/* line 391, app/assets/stylesheets/temas/public.scss */
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* line 396, app/assets/stylesheets/temas/public.scss */
.inner {
  padding: 2rem 55px 0 1rem;
}

@media (max-width: 47.99em) {
  /* line 401, app/assets/stylesheets/temas/public.scss */
  .inner {
    padding: 2rem 1rem 0 1rem;
  }
}

/* line 406, app/assets/stylesheets/temas/public.scss */
.inner.cover {
  padding-bottom: 40rem;
}

/* line 410, app/assets/stylesheets/temas/public.scss */
.masthead {
  margin-bottom: 2rem;
  background: #58595b;
}

/* line 415, app/assets/stylesheets/temas/public.scss */
.masthead-brand {
  text-align: center;
  margin-bottom: 0;
}

/* line 418, app/assets/stylesheets/temas/public.scss */
.masthead-brand img {
  max-width: 90px;
  margin-top: -30px;
}

@media (min-width: 48em) {
  /* line 425, app/assets/stylesheets/temas/public.scss */
  .masthead-brand {
    text-align: left;
  }
}

/* line 430, app/assets/stylesheets/temas/public.scss */
.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

/* line 434, app/assets/stylesheets/temas/public.scss */
.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

/* line 438, app/assets/stylesheets/temas/public.scss */
.nav-masthead {
  float: right;
  margin-top: -13px;
}

/* line 443, app/assets/stylesheets/temas/public.scss */
.masthead-brand {
  float: left;
}

/* line 444, app/assets/stylesheets/temas/public.scss */
.masthead-brand img {
  max-width: 140px;
  margin-top: -67px;
  margin-left: 34px;
}

@media (max-width: 47.99em) {
  /* line 454, app/assets/stylesheets/temas/public.scss */
  .masthead-brand img {
    margin-left: -6px;
  }
}

/* line 459, app/assets/stylesheets/temas/public.scss */
.masthead {
  overflow: hidden;
  max-height: 70px;
}

/* line 464, app/assets/stylesheets/temas/public.scss */
.mastfoot {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 40em) {
  /* line 469, app/assets/stylesheets/temas/public.scss */
  .masthead {
    position: fixed;
    top: 0;
  }
  /* line 473, app/assets/stylesheets/temas/public.scss */
  .mastfoot {
    position: fixed;
    bottom: 0;
  }
  /* line 477, app/assets/stylesheets/temas/public.scss */
  .site-wrapper-inner {
    vertical-align: middle;
    height: 100vh;
  }
  /* line 481, app/assets/stylesheets/temas/public.scss */
  .masthead,
.mastfoot,
.cover-container {
    width: 100%;
  }
}

/* line 488, app/assets/stylesheets/temas/public.scss */
.preloader {
  width: 100%;
  height: 100%;
  top: 0px;
  position: fixed;
  z-index: 99999;
  background: #000;
}

/* line 496, app/assets/stylesheets/temas/public.scss */
.cssload-speeding-wheel {
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px);
}
