/* ========== CUSTOM STYLES ========== */

body {
  background-color: #f3f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
  padding-top: 10rem;
}

.bg-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 800;
  color: #bae6fd;
  font-size: clamp(2rem, 8vw, 5rem);
  opacity: 0.4;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 640px) {
  .bg-title {
    top: 5%;
    font-size: clamp(2.4rem, 11.2vw, 5.6rem);
  }
}

.alert {
  margin-top: 6rem;
}

.form-box {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 1200px;
  margin-top: 3rem;
  z-index: 10;
}

.btn-primary {
  background-color: rgb(7, 89, 133) !important;
  border-color: rgb(7, 89, 133) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: rgb(5, 73, 110) !important;
  border-color: rgb(5, 73, 110) !important;
}

.error-text {
  color: #dc3545;
  font-size: 0.875rem;
  display: none;
  margin-top: 0.25rem;
}

/* Breadcrumb štýl */
.breadcrumb {
  background-color: transparent;
  font-size: 0.95rem;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgb(7, 89, 133);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item.active {
  color: #6c757d;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}

.breadcrumb-wrapper {
  position: absolute;
  top: 2rem;
  right: 3rem;
  text-align: right;
  z-index: 100;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcrumb-wrapper {
    top: 1rem;
    right: 1rem;
  }
}
