/* From Uiverse.io by ozgeozkaraa01 */
.group {
    line-height: 30px;
    align-items: center;
    position: relative;
}

.group .input {
    width: 100%;
    height: 45px;
    line-height: 30px;
    padding: 0 1rem;
    border: 2px solid;
    border-radius: 10px;
    outline: none;
    background-color: #f8fafc;
    color: #0d0c22;
    transition: .5s ease;
}

.group .input::placeholder {
    color: #94a3b8;
}

.group .input:focus,
.group .input:hover {
    outline: none;
    border-color: var(--jack-purple-2);
    background-color: #fff;
    box-shadow: 0 0 0 5px #8146af86;
}

.label {
    display: block;
    margin-bottom: .3rem;
    font-size: .9rem;
    font-weight: bold;
    color: #05060f99;
    transition: color .3s cubic-bezier(.25, .01, .25, 1) 0s;
}

.group:hover .label {
    color: var(--jack-purple-2);
}