textarea{
    outline: none;
}


.group{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 2.5rem;
    border-radius: 4px;
    box-shadow: rgb(7, 7, 7) 0px 0px 0px 1px inset;;
    background-color: transparent;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}

.input{
    height: 100%;
    width: 100%;
    padding: 4px 7px;
    font-size: 15px;
    color:black;
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}






.group:focus-within{
    box-shadow: var(--info) 0px 0px 0px 2px inset ;
}

.input:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

.input:focus ~ .label,
.input:valid ~ .label,
.input:disabled ~  .label{
    top: 4px;
    font-size: 12px;
}
