.login-hero-section {
  /* padding: 1.25rem; */
  background: linear-gradient(
    180deg,
    #667bbc 0%,
    #667bbc 38%,
    #23253a 62%,
    #23253a 100%
  ) !important;
  position: relative;
  height: 100vh;
}

.login-card {
  background: transparent;
  position: relative;
  padding: 5rem 1.875rem;
  max-width: 20rem;
  /* min-height: 50rem; */
  width: 100%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

/* .scalloped-frame .scalloped-inner {
  stroke: #e8c47a;
  stroke-opacity: 0.85;
} */

.login_wraper {
  background-image: url("../images/wedding-login.svg");
  background-size: cover;
  background-position: center;
  padding: 1.5625rem 0;
}
.all-main .login-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1875rem;
  font-weight: 500;
}
.all-main .login-content h1 {
  font-size: 2.375rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.125rem;
  color: #b0904a;
  font-weight: normal;
  text-align: center;
}
.all-main .login-content h5 {
  font-size: 1.625rem;
  margin-bottom: 1.125rem;
  letter-spacing: 0.1875rem;
  font-weight: 500;
}
.all-main .login-content > p {
  font-size: 0.75rem;
  color: #6b6b6b;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  max-width: 13.1875rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 1rem;
}

.login_wraper {
  max-width: 42rem;
  margin: 0 auto;
}

.form-group input {
  width: 18.75rem;
  height: 3.9375rem;
  background-image: url("../images/input-bg.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  border: none;
  outline: none;
  background-color: transparent;
}
.form-group label {
  font-size: 0.6875rem;
  color: #b0904a;
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.form-group input::focus,
.form-group input::focus-visible {
  outline: none;
  border: none;
}
.login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.login-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.login-background svg {
  width: 100%;
  height: 100%;
  fill: #f0ebe4;
}
.login-background .scalloped-fill {
  fill: #f0ebe4;
  stroke: #e8c47a;
  stroke-width: 1.5;
}
.login-background .scalloped-inner {
  stroke: #e8c47a;
  stroke-opacity: 0.85;
}
.login-submit-btn {
  width: 100%;
  height: 4.0625rem;
  background-image: url(../images/login-button.png);
  border: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  color: #4a3a1f;
}
.login-content .note {
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
}
.forgot-password a {
  font-size: 0.6875rem;
  color: #6b6b6b;
  margin-top: 0.875rem;
  font-family: monospace;
}
/* Flash Messages */
.flash-messages {
  margin-bottom: 1.5rem;
  width: 100%;
}

.flash-message {
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  border: 1px solid;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flash-message.flash-error {
  background-color: #fee;
  border-color: #fcc;
  color: #c33;
}

.flash-message.flash-success {
  background-color: #efe;
  border-color: #cfc;
  color: #3a3;
}

.flash-message.flash-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.flash-message.flash-info {
  background-color: #e7f3ff;
  border-color: #b3d9ff;
  color: #004085;
}
@media (max-width: 600px) {
  .login_wraper {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
