         body
         {
            /* Fallback background color (in case image fails to load) */
            background-color: #f0f0f0;

            /* Background image URL (relative or absolute path) */
            background-image: url('../template_images/login_background.jpg');

            /* Prevent image from repeating */
            background-repeat: no-repeat;

            /* Center the image */
            background-position: center;

            /* Make the image cover the entire area */
            background-size: cover;

            /* Keep background fixed while scrolling */
            background-attachment: fixed;
         }
         
         .tblLogIn
         {
            background-color: white;
            border: 1px solid black;
            border-radius: 15px;
            padding: 20px 10px 20px 10px;
         }
         
         .pass_box
         {
            margin: 0px 5px 0px 5px;
            padding: 5px 0px 5px 0px;
            text-align: center;
         }