.contact-section {
    background: url("../src/images/BG yellow .svg") center no-repeat;
    background-size: cover;
    height: 700px;
}

.contact {
    background: url("../src/images/Form\ yellow\ 2.svg") 100px 0 no-repeat; /* img, size, repeating */
    background-size: 550px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    color: white;
}

.contact-heading {
    font-size: 56px;
    margin: 100px 0 50px;
}

.contact-section .information {
    line-height: 25px;
    font-family: "Microsoft JhengHei", sans-serif;
}

.contact-section .information .green-text {
    margin: 20px 0;
}

.society {
    display: flex;
    gap: 15px;
    align-items: center;

    padding: 20px 0;
}

.society a {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;

    color: black;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.society img {
    width: 45px;
}

.contact-form {
    width: 350px;
    margin-top: 100px;
}

.form-heading {
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    font-family: sans-serif;

    padding: 15px;
    background-color: rgba(0, 0, 0, 0);
    color: var(--neon-green);

    border: 2px solid var(--neon-green);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2px solid var(--neon-green);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--neon-green);
    opacity: .7;
}

.contact-form textarea {
    resize: none;
    height: 120px;
    width: 100%;
}

.form-name {
    display: flex;
    width: 350px;
    gap: 5px;
}

.contact-form input {
    margin-bottom: 5px;
    width: 100%;
}

.contact-form button {
    padding: 10px 30px;
    margin-top: 10px;
    color: black;

    font-family: "Lato", sans-serif;
    font-size: 16px;
    background-color: var(--neon-green);

    border: none;
    border-radius: 2%;
}

.contact-form button:hover {
    cursor: pointer;
}

input:-webkit-autofill {
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px black inset !important;
    caret-color: var(--neon-green) !important; /* For cursor */
    -webkit-text-fill-color: var(--neon-green) !important;
}

input:-webkit-autofill:focus {
    background-color: transparent !important;
    box-shadow: 0 0 0px 1000px black inset !important;
    -webkit-text-fill-color: var(--neon-green) !important;
    color: var(--neon-green) !important;
}

.error-message {
    font-size: 12px;
    color: red;
    margin: 3px 0;
}

footer {
    text-align: center;
    width: 99.9%;

    margin-top: 70px;
    font-family: sans-serif;
    color: white;
}

.footer-menu {
    list-style-type: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

    border: 1px solid var(--neon-green);
    padding: 20px 0;
}

.footer-menu a {
    color: white;
    text-decoration: none;
}

.footer-info {
    padding: 10px 0;
}