/* Page Layout */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.center {
    text-align: center;
    margin: 0 auto;
}

/* Logo */
#logo {
    display: block;
    margin: 40px auto 30px auto;
    max-width: 500px;
    width: 90%;
    height: auto;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin: 20px auto;
}

/* Input Fields */
.contact-form input,
.contact-form textarea {
    width: 350px;
    max-width: 90vw;

    padding: 14px;
    border: 2px solid #9bcdf2;
    border-radius: 8px;

    background: #ffffff;
    color: #26343d;

    font-size: 15px;
    font-family: inherit;

    box-sizing: border-box;

    box-shadow: 0 0 10px rgba(155, 205, 242, 0.25);

    transition: all 0.3s ease;
}

/* Message Box */
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Focus Effect */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5aa9e6;
    box-shadow: 0 0 15px rgba(90, 169, 230, 0.45);
}

/* Submit Button */
.contact-form button {
    width: 350px;
    max-width: 90vw;

    padding: 14px;

    border: none;
    border-radius: 8px;

    background: #5aa9e6;

    color: white;
    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact-form button:hover {
    box-shadow: 0 5px 15px rgba(38, 52, 61, 0.3);
}

.contact-form button:active {
    transform: translateY(0);
}
.form-title {
    margin: 0 0 15px 0;
    color: #26343d;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
}

.form-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(
        90deg,
        #9bcdf2 0%,
        #5aa9e6 100%
    );
    border-radius: 2px;
}

/* Mobile */
@media screen and (max-width: 768px) {

    #logo {
        max-width: 90%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        width: 90%;
    }
}