.gsl-talk-with-colleague {
--gsl-talk-border: rgba(0, 0, 0, 0.12);
--gsl-talk-border-focus: color-mix(in oklab, var(--gsl-talk-accent), black 25%);
--gsl-talk-bg: rgba(255, 255, 255, 0.9);
--gsl-talk-link-hover: color-mix(in oklab, var(--gsl-talk-accent), black 15%);
display: flex;
flex-direction: column;
gap: 14px;
}
.gsl-talk-with-colleague a {
text-decoration: none;
}
.gsl-talk-with-colleague a:visited {
color: black;
}
.gsl-talk-with-colleague a:hover,
.gsl-talk-with-colleague a:focus {
color: var(--gsl-talk-link-hover);
}
.gsl-talk-with-colleague__form {
display: flex;
flex-direction: column;
gap: 12px;
}
.gsl-talk-with-colleague__fields {
display: flex;
flex-direction: column;
gap: 10px;
}
.gsl-talk-with-colleague__label {
display: block;
margin: 0 0 6px;
font-weight: 600;
font-size: 14px;
line-height: 1.2;
color: rgba(0, 0, 0, 0.7);
}
.gsl-talk-with-colleague__input,
.gsl-talk-with-colleague__textarea {
width: 100%;
border: 1px solid var(--gsl-talk-border);
border-radius: 12px;
padding: 10px 12px;
background: var(--gsl-talk-bg);
color: #000;
font-family: inherit;
font-size: 14px;
line-height: 1.35;
transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.gsl-talk-with-colleague__input::placeholder,
.gsl-talk-with-colleague__textarea::placeholder {
font-family: inherit;
color: rgba(0, 0, 0, 0.45);
opacity: 1;
}
.gsl-talk-with-colleague__textarea {
resize: none;
min-height: 120px;
}
.gsl-talk-with-colleague__input:focus,
.gsl-talk-with-colleague__textarea:focus {
outline: none;
border-color: var(--gsl-talk-border-focus);
box-shadow: 0 0 0 3px color-mix(in oklab, var(--gsl-talk-accent), transparent 80%);
background: #fff;
}
.gsl-talk-with-colleague__submit.gsl-button {
background: var(--gsl-talk-accent);
}