@font-face {
  font-family: 'Acumin';
  src: url('./font/AcuminVariableConcept.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --footer-h: 260px;
  --header-h: 80px;
}

body {
  font-family: 'Acumin', Arial, sans-serif;
  background: #6bb97d;
  overflow-x: hidden;
}

/* BACKGROUND */
.hero {
  position: fixed;
  inset: 0;
  background: url("bg.png") center center / cover no-repeat;
  z-index: -1;
}

/* =========================
   JULIA
========================= */
.julia {
  position: fixed;
  left: 0;
  right: 0;

  top: 0;                  
  bottom: var(--footer-h);

  display: flex;
  justify-content: center;
  align-items: flex-end;

  padding-top: 120px;

  z-index: 5;
  pointer-events: none;
}

.julia img {
  max-height: 100%;
  height: auto;
  width: auto;

  max-width: 95vw;
  display: block;
}

/* SIGNUP */
.card {
  position: fixed;
  top: 0;
  width: 100%;
  background: #d43a8f;
  padding: 20px;
  text-align: center;
  z-index: 20;
  color: white;
}

.card h2 {
  margin-bottom: 10px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
}

#signup-form {
  display: flex;
}

#signup-form input {
  height: 44px;
  width: 360px;
  padding: 0 10px;
  border: none;
  transition: border 0.2s ease;    
}

#signup-form input:focus{
    outline: none;
    border: 1px solid #999;
}

#signup-form button {
  height: 44px;
  background: #2e3192;
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-weight:bold; 
  font-size:1.1em;
  transition: background-color 0.2s ease;    
}

#signup-form button:hover{
  background: #1e75bb;  
      
}

.hidden {
  display: none;
}

#success-message{
    height: 44px;
    font-size: 1.3em;
    color:#fff1b8;
}

/* =========================
   FOOTER
========================= */

.billing-block {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: var(--footer-h);
  background: #2e3192;
  display: flex;
  justify-content: center;
  padding: 30px;
  z-index: 10;
}

.footer-inner {
  width: 100%;
  max-width: 1100px;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.footer-left {
  flex: 4;
  display: flex;
  justify-content: flex-end;
}

.footer-left img {
  max-width: 400px;
  width: 100%;
}

.footer-right {
  flex: 6;
  display: flex;
  justify-content: flex-start;
}

.footer-right img {
  max-width: 600px;
  width: 100%;
}

.footer-legal {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: white;
  opacity: 0.75;
  line-height: 1.4;
  padding: 20px 0 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }

  .footer-left img,
  .footer-right img {
    max-width: 90%;
  }

  .julia img {
    max-width: 110vw;
  }
}

@media (max-width: 640px) {
    .card h2{
        font-size:1.1em;
    } 
    
    #signup-form input {
        width:260px;
    }
}