html {
    font-family: 'Fira Sans';
    overflow: hidden;
    height: 100%;
    scroll-behavior: auto;
}
.alert h1 {
    font-family: 'Get Show';
    color: #84a31f;
    text-align: center;
    font-size: 3rem;
}
.alert h2 {
    font-size: 1.5rem;
}
.alert {
    border-radius: 2px;
}
body {
    margin: 0px;
    overflow: hidden;
    position: fixed;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    top: 0;
    left: 0;
}
option {
    accent-color: #84a31f;
}
option:hover {
    background-color: #84a31f;
    accent-color: #84a31f;
}
.alert {
    background-color: white;
    z-index: 1000;

    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 3rem;
    /* -webkit-animation: scale-in-center 0.7s ease-in-out both, translate(-50%, -50%); */
	        /* animation: scale-in-center 0.7s ease-in-out both, translate(-50%, -50%); */
}

/* Hide poster when alert is shown */
body:has(.center-alert) .poster {
    display: none;
}
h2 {
    text-align: center;
    
    font-size: 48px;
    margin-bottom: 25px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 0px;
    font-weight: 600;
    
}
.background {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0;
    background-color: black;
    background-image: url(assets/bg_pattern_nd.png);
    /* background-size: cover; */
    background-position: right 35% bottom 50%;
    background-repeat: no-repeat;
    /* opacity: 0.3; */
}

/*  */
.poster {
    position: absolute;
    left: 25%;
    top: 40%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    font-size: 5rem;
    right: calc(500px + 250px);
    perspective: 1500px;
    transform-style: preserve-3d;
}
.poster h1 {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.poster h1 .sec-wrapper {
    align-self: flex-start;
    animation: flyInFromTop 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-100px) translateZ(50px);
    transform-style: preserve-3d;
}

.poster h1 .sec {
    font-family: 'Get Show';
    background: linear-gradient(90deg, rgba(235,197,36,1) 0%, rgba(137,170,40,1) 50%, rgba(9,115,102,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    font-weight: normal;
    padding: 5px;
}
.poster h1 .sec-wrapper {
    transform: translateZ(50px);
}
.poster h1 .sec::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    padding: 5px;
    -webkit-text-fill-color: transparent;
    text-shadow:
        -2px -2px 0 #000,
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000,
         0px -2px 0 #000,
         0px  2px 0 #000,
        -2px  0px 0 #000,
         2px  0px 0 #000,
        -3px -3px 0 #000,
         3px -3px 0 #000,
        -3px  3px 0 #000,
         3px  3px 0 #000;
}
.poster h1 .main {
    line-height: 8rem;
    align-self: flex-end;
    opacity: 0;
    transform: translateZ(0px);
    transform-style: preserve-3d;
}
.poster h1 .sub {
    align-self: flex-end;
    font-size: 2rem;
    line-height: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 3s forwards;
    transform: translateZ(-30px);
}
.nd-logo-anim {
    width: 75px;
    height: auto;
    transform: scale(0) translateZ(20px);
    animation: scaleUp 0.5s ease-out 2.2s forwards;
    margin-top: 40px;
    align-self: center;
    position: absolute;
    top: 0px;
    left: 50px;
    z-index: 12;
}
.dan {
    height: 100vh;
    position: absolute;
    left: 150px;
    bottom: -30vh;
    z-index: 12;
}
/* Animations */
@keyframes flyInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px) translateZ(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(75px) translateZ(50px);
    }
}

@keyframes flyInFromTopNoTransform {
    0% {
        opacity: 0;
        margin-top: -100px;
    }
    100% {
        opacity: 1;
        margin-top: 0%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0) translateZ(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(20px);
    }
}

@keyframes fadeOutPoster {
    0% {
        opacity: 1;
        visibility: visible;
    }
    99% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/*  */
.centerform {
    height: fit-content;
    width: 100%;
    display: flex;

    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	
    justify-content: flex-end;
    padding: 150px;
    align-items: flex-end;
    box-sizing: border-box;
}
form {
    background: white;
    /* border-radius: 15px; */
    /* padding: 50px; */
    padding-top: 25px;
    color: black;
    max-width: 500px;
    width: 100%;
    z-index: 10;
    /* display: flex; */
    /* justify-content: center; */
    /* flex-direction: column; */
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;

    -webkit-animation: scale-in-center 0.7s ease-in-out 4s both;
	        animation: scale-in-center 0.7s ease-in-out 4s both;
}
@-webkit-keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
label {
    text-align: center;
    font-size: 18px;
}
input, select {
    background-color: rgba(255, 255, 255, 0.0);
    border: 1px solid grey;
    /* border: none; */
    color: black;
    /* padding:5px; */
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
    width: 80%;
}
input:hover, select:hover {
    box-shadow: 0px 0px 5px 2px #84a31f;
}
option {
    /* background-color: #84a31f; */
}
button {
    /* margin: 25px; */
    margin-top: 10px;
    width: 60%;
    padding: 10px;
    font-size: 18px;
    color: white;
    background-color: #84a31f;
    border: none;
	border-radius: 0px;
    font-family: 'Fira Sans';
    font-size: 20px;
    cursor: pointer;
	background: linear-gradient(90deg, rgba(235,197,36,1) 0%, rgba(137,170,40,1) 50%, rgba(9,115,102,1) 100%);
    font-weight: 700;
    letter-spacing: 0.05em;
}
button:hover {
    box-shadow: 0px 0px 5px 2px #84a31f;
}
img {
    height: 75px;
    /* filter: invert(100%); */
    object-fit: contain;
}
.logoliste {
    display: flex;
    flex-direction: column;
    background-color: white;
    gap: 20px;
    padding: 25px;
    justify-content: space-between;
}
span.acc {
    color: #84a31f;
    font-family: 'Get Show';
    font-size: 32px;
    position: relative;
    top: 4px;
}
input:focus {
    outline: none;
    border: 1px solid #84a31f;
}
@media only screen and (max-width: 1860px) { 
    
    .poster {
        font-size: 4rem;
        max-width: 550px;
        left: unset;
        right: 600px;
    }
    .poster h1 .main {
        line-height: 6rem;
    }
    .poster h1 .sub {
        
    }
    .poster h1 .sec-wrapper {
        font-size: 4rem;
    }
    .poster h1 .sec-wrapper .sec {
        top: -50px;
    }
    .centerform {
        top: unset;
        transform: unset;
        padding: 0;
    }
    form {
        height: 100vh;
    }
    form h2 {
        margin-top: 2rem;
    }
    .dan {
        left: 50px;
    }
}
@media only screen and (max-width: 1500px) {
    .dan {
        height: 80vh;

    }
    .poster {
        top: 30%;
        font-size: 3rem;
        right: 550px;

    }
}

@media only screen and (max-width: 950px) {
   .dan {
     display: none;
   }
   .poster {
        background-color: rgba(0,0,0,0.7);
        backdrop-filter: blur(2rem);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: unset;
        transform: unset;
        z-index: 11;
        padding: 14rem;
        animation: fadeOutPoster 1s ease-out 5.5s forwards;
   }
   form {
        max-width: unset;
        out
   }
   .nd-logo-anim {
        animation: fadeOutPoster 1s ease-out 5.5s forwards;
   }
}
@media only screen and (max-width: 950px) {
    .poster {
        padding: 30% 8rem;
    }
}
@media only screen and (max-width: 650px) {
    .poster {
        padding: 30% 4rem;
    }
}
@media only screen and (max-width: 500px) {
    .poster {
        padding: 50% 3rem;
        font-size: 2rem;
    }
    .poster h1 .main {
        line-height: 3rem;
    }
    .poster h1 .sub {
        font-size: 1rem;
    }
}