@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

section
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(-45deg, magenta, #EE7752, #e73c7e, #23A6D5, #23D5AB,red,yellow,orange,cyan, white,lightpink,green,silver,turquoise,violet,salmon,teal);
    background-size: 400% 400%;
    position: relative;
    animation: change 15s ease-in-out;
}
.box
{
    position:relative;
    padding: 50px;
    width: 360px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    box-shadow: 0 5px 35px rgba(0,0,0,0.2);
}
.box::after
{
    content:' ';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 5px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 15%,transparent 50%, transparent 85%, rgba(255,255,255,0.3) 100%);
}
.box .form
{
    position: relative;
    width: 100%;
}

.box .form h2
{
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.box .form .inputBx
{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.box .form .inputBxDM input
{
    width: 100%;
    outline: none;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    padding: 25px 15px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 300;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);

}

.box .form .inputBxsendme input
{
    width: 50%; height: 25%;
    outline: none;
    border: 2px solid rgba(255,255,255,0.2);
    background: white;
    color: #111;    
    max-width: 100px;
    padding: 8px 10px;
    border-radius: 20px;
    border-color: red;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: fantasy ;
    margin-top: 20px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);


}

.box .form .inputBx input
{
    width: 100%;
    outline: none;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    padding: 8px 10px;
    border-radius: 6px;
    color: black;
    font-size: 16px;
    font-weight: 300;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.2);

}



h2
{
    font-size: 2rem;
    font-family: cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #fff;
    position: relative;
}

@keyframes change {
    0%{
        background-position: 0 50%;

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