body {
    font-family: Arial, sans-serif;
    background: url('../images/EAuploader_LOGO2.png') no-repeat center center fixed;
    background-size: 75%; /* Adjust image size */
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Adjust transparency */
    z-index: 0; /* Places it behind the content */
}

.container {
    text-align: center;
    position: relative;
    z-index: 1; /* Keeps the container above the background */
}

h1 {
    color: #333;
}

form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    margin-top: 20px;
    display: inline-block;
    vertical-align: top;
}

h2 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #555;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

.error {
    color: #ff0000;
}

.success {
    color: #008000;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #007bff;
}

p strong {
    font-size: 16px;
    line-height: 1.6;
    color: #0b9963;
}
