.input-container {
    margin: 10px;
}

input {
    color: #1f2937;
    width: 100%;
    height: 35px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 15px;
    border-style: none;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    transition: 0.15s;
}

textarea {
    color: #1f2937;
    width: 100%;
    padding: 15px;
    font-size: 15px;
    margin-bottom: 7px;
    margin-top: 7px;
    border-style: none;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    resize: vertical;
    max-height: 340px;
    overflow: auto;
    transition: 0.15s;
}

input:hover, textarea:hover {
    border: 1px solid #96bef5;
    box-shadow: 0 2px 2px rgba(11,33,74,0.06),0 -1px 1px rgba(11,33,74,0.03);
}


/* ---------- content-editable .textarea & .input ---------- */
.input {
    display: flex;
    align-items: center;
    color: #1f2937;
    width: 100%;
    height: 35px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 15px;
    font-weight: 500;
    border-style: none;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    transition: 0.15s;
    background-color: #fff;
}

.textarea {
    color: #1f2937;
    width: 100%;    
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 7px;
    border-style: none;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    overflow: auto;
    transition: 0.15s;
    resize: none;
    max-height: 50px;
    min-height: 50px;
    outline: none;
    background-color: #fff;
}

.input:hover, .textarea:hover {
    cursor: text;
    border: 1px solid #96bef5;
    box-shadow: 0 2px 2px rgba(11,33,74,0.06),0 -1px 1px rgba(11,33,74,0.03);
}

.textarea-container {
    width: 100%;
}


/* ---------- focus box-shadow ---------- */
input:focus, textarea:focus, .input:focus, .textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 2px 2px rgba(150, 190, 245, 0.15),0 -1px 1px rgba(150, 190, 245, 0.15);
}
