.contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.contact form > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact label {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: #333;
}

.contact input,
.contact textarea {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background: transparent;
    color: #111;
    transition: border-color 0.2s ease;
}

.contact input:focus,
.contact textarea:focus {
    border-bottom-color: var(--col1);
}

.contact textarea {
    resize: vertical;
    min-height: 100px;
}

.contact button[type="submit"] {
    align-self: flex-start;
    background: var(--col1);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact button[type="submit"]:hover {
    background: var(--col2);
}
