#cb-container {
	display: grid;
	grid-template-columns: repeat(15, minmax(4ch, 1fr));
}
.contact-box { 
    background-color: var(--comp-color-midtone);
    color: inherit;
    grid-area: 1/1/1/13;
    /* border: 2px solid green; */
    /* grid-area: 1/8/1/13; */
    /* justify-self: center; */
    /* align-self: center; */
    display: grid;
    gap: 0.5rem;
    padding: 0.5rem;
    /* margin-left: 0.25rem; */
    margin-right: 0.25rem;
    margin-bottom: 0.5rem;
    min-width: 40ch;
    max-width: 100ch;
    margin-top: 0.5rem;
    /* border-left: 3px solid white; */

}

/* .glass {
    backdrop-filter: blur(10px);
    border: 1px solid whitesmoke;
    color: whitesmoke;
    border-radius: 1rem;
} */

.contact-box h1 {
    text-align: center;
}

.contact-box p {
    text-align: justify;
}

.contact-box button {
    background-color: var(--accent-color1);
    color: var(--lt-color);
    font-size: 1rem;
    border: none;
    justify-self: center;
    margin: 0.25rem;
    padding: 1rem;
    width: 10rem;
    height: 3rem;
    /* box-shadow: 0.25em 0.25em 2px var(--neutral-black); */
    /* border-radius: 50%; */
    border-radius: 0.5rem;
}

.contact-box button {
    /* background-image: url("../images/paper-plane-2563-lt-color.svg"); */
    background-image: url("../images/paper-plane-2563-lt-color.svg");
    background-repeat: no-repeat;
    background-size: 65% 65%;
    background-position: center;
}

.contact-box button:hover {
    box-shadow: 0.25em 0.25em 2px var(--brand-color);
}

.contact-box button:active {
    background-color: var(--neutral-black);
    color: var(--lt-color);
    box-shadow: none;
}

.contact-box form {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.5rem;
    padding: 0.5rem;
    border-top: 1px solid white;
    /* border-bottom: 1px solid white; */
    /* border-radius: 1rem; */
    /* color: var(--dt-color); */
}

#fname, #lname, #subject {
    font-family: Arial, Helvetica, sans-serif;
    font-family: ubuntu;
    height: 3ch;
}

input, textarea {
    color: var(--dt-color);
    font-family: Arial, Helvetica, sans-serif;
    font-family: ubuntu;
    background-color: var(--neutral-white);
    font-family: ubuntu;
}

::placeholder {
    color: var(--dt-color);
    font-family: Arial, Helvetica, sans-serif;
    font-family: ubuntu;
}
