:root {
    --form-width: 80%;
    --text-color: #FFF;
    --font-family: "Excon-Variable", serif;
    --font-size: 1.25rem;
    --font-weight: 300;
    --input-bg: rgba(0, 0, 0, 0.30);
    --input-bg-active: rgba(0, 0, 0, 0.9);
}

/* Form Container */
#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Shared styles for labels and inputs */
#contact-form label,
#name,
#email,
#message {
    width: var(--form-width);
    flex-shrink: 0;

    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: var(--font-weight);
    line-height: normal;
    text-align: start;
}

/* General Input Styles */
#name,
#email,
#message {
    height: 2.1875rem;
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;

    background-color: var(--input-bg);
    backdrop-filter: blur(2px);

    transition: all 0.3s ease;
}

/* Input States: Hover & Focus */
#name:hover,
#email:hover,
#message:hover,
#name:focus,
#email:focus,
#message:focus {
    background-color: var(--input-bg-active);
}

/* Specific Style Overrides */
#message {
    height: 17.125rem;
    margin-bottom: 50px;
}