#send {
    background-color: white;
    max-width: 425px;
    padding: 30px;
    border-radius: 10px;
    margin: auto;
}

#send .field {
    display: flex;
    margin-bottom: 15px;
}

#send .field label {
    font-family: GothamBookRegular, Arial, sans-serif;
    font-size: 13pt;
    color: black;
    width: 80px;
}

#send .field input {
    font-family: GothamBookRegular, Arial, sans-serif;
    border: 1px solid #176200;
    padding: 7px 10px;
    flex-grow: 1;
    font-size: 12pt;
    outline: none !important;
}

#send .submit {
    font-family: GothamBookRegular, Arial, sans-serif;
    text-transform: uppercase;
    color: white;
    border-radius: 5px;
    background-color: #26a200;
    font-size: 15pt;
    padding: 10px 0;
    width: 70%;
    margin: auto;
    display: block;
    border: 0;
    min-width: 170px;
    cursor: pointer;
    transition: 0.2s;
    max-width: 200px;
    outline: none;
}

#send .submit:hover {
    background-color: #1d7d00;
}

.download_now {
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
    font-family: GothamBookRegular, Arial, sans-serif;
    color: white;
    background-color: #26a200;
    border-radius: 4px;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 14pt;
    text-decoration: none;
    width: 340px;
    transition: 0.3s;
}

.download_now:hover {
    background-color: #228205;
}

h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 21pt;
    font-family: GothamBold, Arial, sans-serif;
    text-align: center;
    color: #0a5300;
}

.download-d {
    display: flex;
    max-width: 400px;
    margin: 0 auto 30px;
}

.download-btn {
    font-family: GothamBookRegular, Arial, sans-serif;
    font-size: 13pt;
    text-transform: uppercase;
    text-align: center;
    color: #176200;
    border: 1px solid #176200;
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 0;
    text-decoration: none;
    flex-grow: 1;
}

.download-d .download-btn:first-child {
    margin-right: 20px;
}

.download-btn:hover {
    background-color: #176200;
    color: #ffffff;
}

.form-message {
    display: none;
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-message {
    padding: 16px 18px;
    border-radius: 12px;
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.success-message strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}
h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26pt;
    font-family: GothamBold, Arial, sans-serif;
    text-align: center;
}
@media (max-width: 768px) {
    h1 {
        font-size: 20pt;
    }
    h2 {
        font-size: 17pt;
    }
}

@media (max-width: 425px) {
    #send {
        padding: 20px;
    }

    #send .field {
        flex-direction: column;
    }

    #send .field label {
        margin-bottom: 3px;
    }

    #send .submit {
        font-size: 12pt;
        max-width: 170px;
    }

    .download-btn {
        font-size: 11pt;
    }

    .download_now {
        max-width: 100%;
        font-size: 12pt;
    }
}