.login-container {
  display: flex;
  min-height: 100vh;
  background-color: #fcf3ec;
  background-image: none;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    justify-content: center;
  }
}

.login-form-wrapper {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 10;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: auto;
  max-width: 500px;
  width: 90%;
}

@media (max-width: 768px) {
  .login-form-wrapper {
    width: 100%;
    box-shadow: none;
    background-color: transparent;
    flex: 1;
  }
}

.login-form-wrapper .brand-logo {
  font-family: 'ut-laurelle', sans-serif !important;
  font-weight: bold;
  color: #ff5e29 !important;
  font-size: 3rem !important;
  margin-bottom: 2rem;
  text-transform: lowercase;
}

.login-form-wrapper .login-form {
  width: 100%;
  max-width: 400px;
}

.login-visual-wrapper {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fcf3ec;
}

@media (max-width: 768px) {
  .login-visual-wrapper {
    display: none;
  }
}

/* Visual Elements */
.visual-bg-yellow {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(255, 215, 0, 0.5);
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.3;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.visual-bg-orange {
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(255, 94, 41, 0.3);
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.3;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 700ms;
}

.phone-container {
  position: relative;
  z-index: 20;
  transform: rotate(-6deg);
  transition: transform 700ms ease-out;
  margin-right: -20px;
}

.phone-container:hover {
  transform: rotate(0);
}

.phone-frame {
  width: 280px;
  height: 560px;
  background-color: #000;
  border-radius: 3rem;
  padding: 1rem;
  border: 4px solid #1f2937;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}

.phone-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background-color: #fcf3ec;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-circle-orange {
  width: 2rem;
  height: 2rem;
  background-color: #ff5e29;
  border-radius: 9999px;
}

.header-circle-gray {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #e5e7eb;
  border-radius: 0.375rem;
}

.phone-content {
  padding-top: 7rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-image {
  height: 8rem;
  background-color: #f3f4f6;
  border-radius: 1rem;
  width: 100%;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-lines .line-long {
  height: 1rem;
  background-color: #f3f4f6;
  border-radius: 0.25rem;
  width: 75%;
}

.content-lines .line-short {
  height: 1rem;
  background-color: #f3f4f6;
  border-radius: 0.25rem;
  width: 50%;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.grid-item {
  height: 6rem;
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.grid-item.orange {
  background-color: rgba(255, 94, 41, 0.1);
}

.grid-item.yellow {
  background-color: rgba(255, 215, 0, 0.1);
}

.grid-item .icon-circle {
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-item .line {
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 0.25rem;
  width: 100%;
}

.order-button {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 0.75rem;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.floating-card {
  position: relative;
  z-index: 30;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #f3f4f6;
  transform: translateY(1rem);
  animation: bounce 3s infinite;
  max-width: 260px;
  margin-left: 0;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-header .icon-bg {
  background-color: #dcfce7;
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-text p:first-child {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.card-text p:last-child {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.card-footer {
  font-size: 0.75rem;
  color: #9ca3af;
  background-color: #f9fafb;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.card-footer span {
  color: #16a34a;
  font-weight: bold;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-5%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}