form {
    width: 50%;
    margin: 40px auto;
}

form * {
    box-sizing: border-box;
}


/* label {
    display: block;
    color: gray;
    cursor: pointer;
} */

.field-wrapper {
    background: transparent;
    padding: 15px 20px;
    margin: 10px auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    border: solid 3px #e6e7e8;
    cursor: pointer;
    width: 50%;
    transform: translate(0, 0) scale(1);
    transition: all 125ms, transform 400ms, box-shadow 400ms;
}

.field-wrapper:hover,
.field-wrapper.active {
    background: white;
    border-color: #e6e7e8;
}

.field-wrapper:hover label,
.field-wrapper.active label {
    color: #6d6e70;
}

.field-wrapper.active {
    cursor: default;
    margin-top: 17px;
    padding: 30px 20px;
    border-color: #00adee;
    transform: translate(0, -15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.field-wrapper.active .text-field-wrapper {
    height: 50px;
    margin-top: 0.75em;
}

.field-wrapper.active input {
    cursor: text;
    opacity: 1;
}

.field-wrapper.active label {
    cursor: default;
}

.field-wrapper .text-field-wrapper {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 125ms;
}

.field-wrapper input {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    vertical-align: bottom;
    line-height: 50px;
    font-size: 17px;
    font-weight: 400;
    padding: 0 0.5em;
    background-color: #d4effcad;
    cursor: pointer;
    border: solid 1px transparent;
    transition: all 125ms;
    opacity: 0;
}

.field-wrapper input:active,
.field-wrapper input:focus {
    outline: 0;
}

.field-wrapper.filled label {
    color: #cccccc;
}

.field-wrapper.filled input {
    padding-left: 0;
    background-color: transparent;
    opacity: 1;
}

.field-wrapper.filled .text-field-wrapper {
    height: 50px;
}

.field-wrapper.filled.active label {
    color: gray;
}

.field-wrapper.filled.active input,
.field-wrapper.filled.active select {
    background-color: #d4effc;
    padding: 0 0.5em;
}

.field-wrapper select {
    width: 100%;
    height: 40px;
}

form button {
    padding: 10px 20px;
    background: #243c80;
    color: white;
    border: 0;
    border-radius: 10px;
    margin: 10px 40%;
    width: 200px;
}

@media(max-width:680px) {
    .field-wrapper {
        width: 100%;
    }
    form button {
        margin: 10px 0px;
        width: 100%;
    }
}


/*# sourceMappingURL=form.css.map */