html {
    overflow-y: scroll;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #000000;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

input[type="text"], input[type="password"], input[type="file"] {
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #fd4513;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #c03610;
}

label {
    display: block;
    margin-bottom: 5px;
}






html {
    overflow-y: scroll;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center; /* Centering the content for better presentation */
}

.downloadurl a {
    color: #fd4513; /* Orange color for links */
    text-decoration: none;
    font-weight: bold; /* Make the link bold for better visibility */
    font-size: 6.0em; /* Large font size for the link */
}

.downloadurl a:hover {
    text-decoration: underline; /* Underline on hover for better interactivity */
}

/* Styling for the password */
.downloadpassword {
    display: block; /* Make this element block for better structure */
    margin: 20px 0; /* Vertical spacing */
    font-size: 8.0em; /* Large font size for emphasis */
    color: #000000; /* Black color for importance */
    font-weight: bold; /* Bold text for emphasis */
}

/* Styling to differentiate the filename */
.filename {
    display: block; /* Make this element block for better structure */
    margin: 10px 0; /* Vertical spacing */
    font-size: 1.2em; /* Larger text for emphasis */
    color: #000000; /* Black color for importance */
}








