/* Original form styling */
fieldset {
    border: 1px solid #ccc;
    padding: 20px;
}

legend {
    font-size: 2.4em; /* Increased font size */
    margin-bottom: 20px;
}

input[type="text"], input[type="email"] {
    width: calc(100% - 22px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.2em; /* Increased font size */
}

button[type="submit"] {
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Popup styling */
#success-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 1.5em;
    text-align: center;
}

#popup-message {
    margin-bottom: 20px;
}

#close-popup, #continue-button, #copy-button {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
}

#continue-button {
    display: block;
}

#copy-button {
    display: block;
}

/* Popup button hover effects */
#close-popup:hover, #continue-button:hover, #copy-button:hover {
    background-color: #45a049;
}
