#modal-form {
    margin: 0;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    background: url("https://drug-dev.com/wp-content/uploads/2025/10/background.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #000;
}

#modal-form .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

#modal-form .left {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 20px;
    max-width: 500px;
}

#modal-form .left h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#modal-form .left p {
    font-size: 2rem;
    margin: 0 0 20px;
    max-width: 70%;
}

#modal-form .arrow {
    font-size: 3rem;
    color: #5c3d99;
}

#modal-form .right {
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    padding: 20px;
}

#modal-form form {
    background: #1e3893; /* dark blue background */
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#modal-form form input {
    display: block;
    width: 99%;
    padding: 13px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

#modal-form form .button {
    display: block;
    width: 99%;
    padding: 12px;
    background: #f58220;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#modal-form form .button:hover {
    background: #e65c00;
}

/* Responsive adjustments */
@media (max-width: 1021px) {
    #modal-form .container {
        background: linear-gradient(90deg, #ffffff 50%, #7f92d7 100%);
    }

    #modal-form .left p {
        max-width: 100%;
    }

    #modal-form .left, #modal-form .right {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    #modal-form .arrow {
        display: none; /* Hide arrow on small screens */
    }
}
