/*
label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
    display: none;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="search"], select {
    padding: 0 12px;
    line-height: 1;
    background-color: #fff;
    height: 44px;
    border: 1px solid var(--gray-200);
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    transition: padding .16s cubic-bezier(.4, 0, .3, 1), color .4s cubic-bezier(.4, 0, .3, 1), border .4s cubic-bezier(.4, 0, .3, 1);
    display: none;
}

.button:disabled, button:disabled {
    opacity: .6;
    cursor: not-allowed;
    display: none;
}
*/