        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background-image: url('raiden.jpg'); /* Replace with your image URL */
            background-color: grey;
            background-size: cover;
            background-position: center;
            height: 100vh;
            overflow: hidden;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired level of transparency */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-box {
            background-color: white;
            padding: 43px;
            border-radius: 18px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .error-message {
            color: red;
            margin-top: 10px;
        }
        
        .success-message {
            color: green;
            margin-top: 10px;
        }
        
        .hostinger-preview-banner {
            display: none;
        }
