.form-field {
    display: grid;
    gap: 4px;
}

.form-field-label {
    color: var(--blue-900);
    font-size: 0.76rem;
    font-weight: 900;
}

.form-field-input {
    background: rgb(255 255 255 / 70%);
    border: 2px solid rgb(119 199 255 / 54%);
    border-radius: 12px;
    color: var(--ink);
    min-height: 46px;
    outline: none;
    padding: 10px 12px;
    transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
    width: 100%;
}

.form-field-input::placeholder {
    color: #82a0b5;
}

.form-field-input:focus {
    background: rgb(255 255 255 / 92%);
    border-color: var(--blue-800);
    box-shadow: 0 0 0 3px rgb(23 108 192 / 12%);
}

.auth-form {
    display: grid;
    gap: 9px;
}

.idea-field-input {
    background: rgb(255 255 255 / 70%);
    border: 2px solid rgb(119 199 255 / 54%);
    border-radius: 12px;
    color: var(--ink);
    display: block;
    line-height: 1.4;
    min-height: 148px;
    outline: none;
    padding: 17px 14px 68px;
    resize: none;
    transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
    width: 100%;
}

.idea-field-input::placeholder {
    color: #82a0b5;
}

.idea-field-input:focus {
    background: rgb(255 255 255 / 92%);
    border-color: var(--blue-800);
    box-shadow: 0 0 0 3px rgb(23 108 192 / 12%);
}
