body {
    padding-bottom: 5rem
}

#contact {
    background-color: #e6e6e6;
    padding: 1rem;
    color: rgb(82, 241, 90) !important;
    text-align: center;
}

#contact h2 {
    margin-top: 0;
}

.row {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.icon {
    font-size: 2.5rem;
    text-align: center;
    color: rgb(82, 241, 90) !important;
    margin-right: 10px;
}

input {
    width: 100%;
    height: 2rem;
    outline: none;
    border: 2px solid rgb(166, 252, 171);
    padding-left: 10px;
    margin-right: 10px;
}

textarea {
    width: 100%;
    height: 10rem;
    padding: 10px;
    outline: none;
    border: 2px solid rgb(166, 252, 171);
    margin-right: 10px;
}

input:focus {
    border: 2px solid rgb(52, 243, 61);
}

textarea:focus {
    border: 2px solid rgb(52, 243, 61);
}

button:disabled,
button[disabled] {
    background-color: rgb(166, 252, 171);
    cursor: not-allowed;
}

.btn {
    background-color: rgb(82, 241, 90);
    color: white;
    padding: 15px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    outline: none;
    margin-right: 10px;
}

.contact-body {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
    column-gap: 25px;
}

@media screen and (max-width: 850px) {
    .contact-body {
        grid-template-columns: unset;
    }
}

#information {
    margin-right: 20px;
}

#information h3 {
    font-size: 20px;
    font-weight: 600;
}

@media (prefers-color-scheme: dark) {
    #contact {
        background: rgb(31, 29, 29);
    }

    input,
    textarea {
        background: rgb(41, 41, 41);
        border: 2px solid rgb(55, 82, 57);
    }

    #contact h2 {
        color: rgb(82, 241, 90) !important;
    }

    .btn {
        background: rgb(16, 105, 22);
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-text-fill-color: #464c4f !important;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

@media (prefers-color-scheme: dark) {
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active{
        -webkit-text-fill-color: rgb(208, 212, 216) !important;
        -webkit-box-shadow: 0 0 0 30px rgb(41, 41, 41) inset !important;
    }
}