 body {
            font-family: Arial, sans-serif;
            background-image: url(/assets/img/bg.gif);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }


        .login-container {
            background: #fff;
            padding: 20px;
            border-radius: 29px;
            box-shadow: 0 2px 10px #fd00f8f7;
            width: 350px;
            text-align: center;
        }

        h1 {
            margin-bottom: 20px;
        }

        input[type="text"], input[type="password"] {
            width: calc(100% - 20px); 
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 30px;
            box-sizing: border-box; 
            font-size: 16px;
        }


        button {
            background: #fd00f8f7;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            width: 95%;
        }

        button:hover {
            background: #fd00f8f7;
        }

        .error-message {
            color: red;
            margin-top: 10px;
        }