* {
    margin: 0;
    padding: 0;
}
.all-pop {
    position: fixed;
    transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1);
    background: linear-gradient(0deg, transparent 0%, rgba(0, 234, 255, 0.7) 60%);
    width: 100vw;
    height: 100vh;
    z-index: 3;
    animation: bg 20s linear infinite alternate both;
}
@keyframes bg {
    0% {
      background: #19dcea;
    }
    25% {
      background: #b22cff;
    }
    50% {
      background: #ea2222;
    }
    75% {
      background: #f5be10;
    }
    100% {
      background: #3bd80d;
    }
  }
.on-popup-white {
    position: fixed;
    background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 1) 90%);
    width: 100vw;
    height: 100vh;
    z-index: 4;
}
.popupmain {
    color: rgb(243, 252, 255);
    transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1);
    background-color: rgba(255, 214, 255, 0.985);
    box-shadow: 0 0 100px rgb(255, 255, 255);
    border-radius: 0 200px 50px 200px;
    margin-left: 20vw;
    margin-top: 10vh;
    width: 60vw;
    height: 80vh;
    z-index: 5;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    position: fixed;
    overflow: hidden;
}
.welc-pop {
    margin: 2%;
    text-align: left;
}
.welc-pop p {
    font-size: 240%;
}
.out-form {
    width: 100%;
}
form {
    text-align: center;
    padding: 6vh 0 6vh 0;
    border: rgb(255, 255, 255) 1px solid;
    border-radius: 0 100px 0 100px;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.5) -40%, rgba(255, 214, 255, 0.985) 50%, rgba(255, 255, 255, 0.5) 140%);
}
.main {
    z-index: 2;
    position: relative;
    display: grid;
    place-content: center;
    grid-template-columns: 1fr 1fr;
}
.main div {
    text-align: center;
    width: 25vw;
}
.main div:nth-child(2n-1) {
    /* margin-left: 24.9vw; */
    margin-top: 0.8%;
} 
.line {
    margin: 2% 0% 2% 0;
    width: 25%;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0% , rgb(255, 255, 255) 30% , rgb(255, 255, 255) 70% , rgba(0, 0, 255, 0) 100%);
}
.one .line {
    margin: 3%;
}
.popupmain div {
    font-size: x-large;
}
.create-account {
    display: contents !important;
    display: inline;
    text-decoration: underline;
}
.main div input {
    padding: 1vh;
    border: none;
    border-radius: 10px;
}
.popup-button {
    margin-top: 1vh;
    font-size: large;
    color: rgb(255, 255, 255);
    padding: 2%;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 10px white;
    background-color: rgba(240, 248, 255, 0);
    display: flex;
    align-items: center;
    justify-self: center;
    transition: all 1s ease;
}
.popup-button:hover {
    cursor: pointer;
    box-shadow: inset 0 0 100px white;
    color: black;
}
.end-pop {
    font-size: medium !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-self: center;
    height: 100%;
}
.end-pop a {
    font-style: italic;
}

@media screen and (max-width: 740px) {
    .popupmain {
        width: 90vw;
        margin-left: 5vw;
    }

}