@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    display: block;
    margin: 8px;
}

div {
    display: block;
    unicode-bidi: isolate;
}

.container {
    height: 100%;
    width: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    display: flex;
    font-family: Poppins;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    padding-bottom: 16px;
}

h1,
h2 {
    font-family: Poppins;
}

h1 {
    margin: 10px;
    font-weight: 600;
}

h2 {
    font-size: calc(4.70588px + 3.52941vw);
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}

form {
    width: 80%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px 24px 0px;
    overflow: hidden;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 800px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    align-self: center;
    margin-top: 32px;
}

.inputDiv {
    font-size: 150%;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    max-width: 800px;
    align-self: center;
    vertical-align: top;
    padding: 0px 0px 64px;
}

input{
    height: calc(62.5px + 2.34375vw);
}

input, textarea{
    -webkit-appearance: none;
    background-color: #d0d1d0;
    border: 2px solid transparent;
    border-radius: 0;
    box-sizing: border-box;
    color: #aaa;
    display: block;
    font-family: Poppins;
    font-size: 80%;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    outline: none;
    padding: 16px;
    position: relative;
    transition: background-color .3s, border-color .3s;
    width: 100%;
}

.inputFilled, .inputFilled{
    background-color: transparent;
    border-color: #58d674;
    outline:none;
}

.inputFilled + .inputLabel, .inputFilled + .inputLabel{
    transform: translate3d(0, -.5em, 0);
}

.inputFilled + .inputLabel .labelContent, .inputFilled + .inputLabel .labelContent{
    color: #58d674;
    font-family: Poppins;
    font-size: .85em;
    font-weight: 600;
    letter-spacing: 1px;
}

.inputFilled{
    background-color: transparent;
    border-color: #58d674;
    outline:none;
}

.inputLabel, .labelContent{
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    width: 100%;
}

.inputLabel{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    bottom: 100%;
    color: #6a7989;
    display: inline-block;
    font-size: calc(1.2px + 3.6vw);
    overflow: hidden;
    padding: 0 1.25em;
    pointer-events: none;
    position: absolute;
    text-align: left;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 100;
}

.labelContent{
    font-weight: 500;
    color: #333;
    display: block;
    padding: .25em 0;
    position: relative;
}

button{
    align-self: center;
    background-color: #58d674;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: Poppins;
    font-size: 18px;
    font-size: calc(15.2px + 1.6vw);
    font-weight: 600;
    height: 100px;
    letter-spacing: .5px;
    max-width: 800px;
    padding: 0;
    transition: all .2s linear !important;
    width: 100%;
}

.copied{
    color: #333;
}

@media only screen and (min-width: 1000px) {
    h2 {
        font-size: 32px;
    }

    .inputLabel {
        font-size: 24px;
    }
}

@media only screen and (min-width: 800px) {
    input {
        height: 100px;
    }

}

@media (max-width: 1024px) {
    form {
        width: 100%;
        padding: 20px 8px 0px;
    }
}