/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 750px;
}

/* Title */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Fields */
.fields {
    margin-bottom: 20px;
}

.field {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    width: 150px;
    font-weight: bold;
    color: blue;
	font-size: 14px;
}

span {
	position: absolute;
    color: black;
	font-size: 12px;
	
	
}

/* PDF Links */
.pdf-links {
    margin-top: 20px;
    text-align: center;
}

.pdf-links a {
    display: block;
    color: blue;
    text-decoration: none;
    margin: 5px 0;
}

.pdf-links a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    color: #555;
}
