*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Convergence", sans-serif;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    background-color: #060b23;
}

.form {
    position: relative;
    width: 20rem;
    height: 3rem;
    top: 26px;
    right: -30%;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #e1e5ee;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: inherit;
    color: white;
    outline: none;
    padding: 1.25rem;
    background: none;
}

.form__input:hover {
    border-color: #adffff;
}

.form__input:focus {
    border-color: #18ffff;
}

.form__label {
    position: absolute;
    left: 1rem;
    top: 0.8rem;
    padding: 0 0.5rem;
    color: white;
    cursor: text;
    transition: top 200ms ease-in, left 200ms ease-in, font-size 200ms ease-in;
    background-color: #060b23;
}


/**
 *
 * 1. When the input is in the focus state
 *    reduce the size of the label and move upwards 
 *
 */

/**
 *
 * 1. Keep label state when content is in input field 
 *
 */



.form__input:focus~.form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus)~.form__label {
    top: -0.5rem;
    font-size: 0.8rem;
    left: 0.8rem;
}

/*=============================================
=            Neon Box comment block            =
=============================================*/

.shadow {
    position: relative;
    margin: 200px auto 0;
    width: 800px;
    height: 500px;
    background: black;
}

.shadow:before,
.shadow:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(45deg, #fb0094, #0000ff);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-size: 400%;
    z-index: -1;
    animation: animate 20s linear infinite alternate both;
}

.shadow:after {
    filter: blur(20px);
}

@keyframes animate {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

h2 {
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: arial;
    text-transform: uppercase;
    top: 50%;
    position: static;
    font-size: 3em;
    padding: 0.5em;
    text-shadow: 0px 0px 10px cyan,
        0px 0px 40px cyan,
        0px 0px 80px purple,
        0px 0px 120px cyan,
        0px 0px 200px cyan;
}

/*=============================================
=            Neon Button comment block        =
=============================================*/

a {
    position: relative;
    display: inline-block;
    padding: 16px 22px;
    margin: 40px;
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.5s;
}

.btns {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    flex-direction: row;
}

.blue-btn {
    color: #03e9f4;
    border: 1.5px solid #03e9f4;
    border-radius: 7px;
}

.blue-btn:hover {
    background-color: #03e9f4;
    color: #050801;
    box-shadow: 0px 0px 5px #03e9f4, 0px 0px 25px #03e9f4, 0px 0px 50px #03e9f4, 0px 0px 100px #03e9f4;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}


/* bottom Result text */

.glow {   
    text-align: center;
    max-width: 1200px;
    margin: 100px auto;
}

.glow span {
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #0ba9ca, 0 0 30px #0ba9ca, 0 0 40px #0ba9ca, 0 0 50px #0ba9ca;
    -webkit-animation: blink 1.5s infinite alternate;
    animation: blink 1.5s infinite alternate;
}

.glow .major {
    display: block;
    font-size: 60px;
}


@-webkit-keyframes blink {
    100% {
        text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #0ba9ca, 0 0 70px #0ba9ca, 0 0 80px #0ba9ca;
    }
}

@keyframes blink {
    100% {
        text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #0ba9ca, 0 0 70px #0ba9ca, 0 0 80px #0ba9ca;
    }
}

