 body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #FFF;
             background-color: #FFF;
            background-image: url('../../assets/image/bg.webp'); 
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat; 
            background-attachment: fixed;
        }

        .container {
            background-color: white;
            padding: 3rem 2rem;
            border-radius: 10px;
             box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
            max-width: 400px;
            width: 100%;
            text-align: center;
        }

        .logo img {
            width: 100%;
            margin-bottom: 5px;
        }

        form {
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }

        label {
            text-align: left;
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="password"] {
            padding: 12px;
            margin-bottom: 10px; 
            border: 1px solid #ccc;
            border-radius: 5px;
            width: 93%;
            font-size: 16px;
        }

        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 20px; /* Space between toggle and button */
        }

        .toggle {
            position: relative;
            display: inline-block;
            width: 40px;
            height: 20px;
            margin-right: 10px;
        }

        .toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 20px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            border-radius: 50%;
            transition: .4s;
        }

        input:checked + .slider {
            background-color: #2f353c;
        }

        input:checked + .slider:before {
            transform: translateX(20px);
        }

        button {
            padding: 12px;
            background-color: #2f353c;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
        }

        button:hover {
            background-color: #45535e;
        }

        .error {
            color: #ff4d4d;
            background-color: #ffe6e6;
            border: 1px solid #ff1a1a;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 14px;
            text-align: center;
        }

        .hidden {
            display: none;
        }

        @media (max-width: 600px) {
            .container {
                padding: 2rem;
            }

            .logo img {
                width: 100%;
            }

            button {
                font-size: 14px;
            }
        }