/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

body {
  background: linear-gradient(120deg, #0a0a0c 0%, #232526 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.container {
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;

}

section {
  animation: fadeInUp 1.2s cubic-bezier(.39,.575,.565,1) both;
      color: #fff;
}

form {
        width: 100%;
    max-width: 500px;
    margin-bottom: 8rem;
}

form label {
        margin-bottom: 6px;
    display: inline-block;
}

form input {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border-radius: 0.375rem;
    background-color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    outline: none;
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    border: 1px solid #e5e7eb;
}

form button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: 0;
    background: #00AE42;
    color: #fff;
    margin-top: 16px;
}

form button:hover {
    background-color: #00D73C;
}
form button:active {
    background-color: #008124;
}

#responseMessage {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-top: -7rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

#responseMessage.success {
    background-color: rgba(0, 174, 66, 0.2);
    color: #00AE42;
    border: 1px solid #00AE42;
}

#responseMessage.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px);}
  100% { opacity: 1; transform: none;}
}
.logo {
  width: 180px;
  max-width: 80vw;
  height: auto;
  margin-top: 48px;
  margin-bottom: 0;
  animation: logoPop 1.3s cubic-bezier(.39,.575,.565,1) both;
  animation-delay: 0.2s;
  will-change: transform, filter;
  filter: drop-shadow(0 0 32px #fff2);
  transition: filter 0.3s;
}
@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
    filter: blur(8px) brightness(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(2deg);
    filter: blur(0) brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0) brightness(1);
  }
}