   body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f5f5f5;
            font-family: Arial, sans-serif;
            text-align: center;
            background-image: url('images/warehousebg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin: 0;
            padding: 0;
        }

        html {
            overflow: hidden !important;
        }

        .welcome-text {
            font-size: 45px;
            font-weight: bold;
            margin-bottom: 20px;
            color: white;
        }

        .form-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 40px 30px; /* Reduced side padding to allow more width */
            border-radius: 10px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            width: 350px; /* Increased width */
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            justify-content: center;
        }

        .form-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .form-container h3 {
            margin: 0 0 25px 0;
            font-size: 24px;
            color: #fff;
            text-align: center;
            width: 100%;
        }

        .form-container img {
            width: 150px;
            display: block;
            margin: 0 auto 25px;
        }

        .form-container input[type="text"],
        .form-container input[type="password"] {
            width: 100%;
            padding: 12px 15px; /* Increased padding */
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            color: white;
            font-size: 15px;
            box-sizing: border-box;
        }

        .form-container input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .password-container {
            position: relative;
            width: 100%;
        }

        .password-container i {
            position: absolute;
            top: 35%;
            right: 15px;
            transform: translateY(-50%);
            cursor: pointer;
            color: white;
            font-size: 16px;
            pointer-events: auto;
        }

        .btn {
            display: flex;
            justify-content: center;
            gap: 100px; /* Increased gap */
            width: 100%;
            margin-top: 15px;
        }

        .btn button {
            flex: 1; /* Makes buttons grow to fill available space */
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            min-width: 120px; /* Minimum width for buttons */
        }

        .btn button[type="reset"] {
            background: rgba(220, 53, 69, 0.3);
        }

        .btn button:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }

        .error {
            color: red;
            margin-bottom: 15px;
            width: 100%;
            text-align: center;
        }

        .forgot-password {
            margin-top: 10px;
            text-align: center;
        }

        .forgot-password p {
            color:rgb(255, 255, 255);
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }

        .forgot-password p:hover {
            text-decoration: underline;
        }


        /* Modal container (background) */
        .modal {
        display: none; /* Hidden by default */
        position: fixed;
        z-index: 999; /* On top of everything */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
        }

        /* Modal content box */
        .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px 30px;
        border-radius: 10px;
        width: 90%;
        max-width: 400px;
        position: relative;
        animation: fadeIn 0.3s ease-in-out;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Close (X) button */
        .modal-content .close {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        color: #333;
        }

        /* Fade in animation */
        @keyframes fadeIn {
        from {opacity: 0; transform: translateY(-20px);}
        to {opacity: 1; transform: translateY(0);}
        }

        /* Input + Button Styling */
        .modal-content input[type="email"] {
        width: 100%;
        padding: 10px;
        margin: 10px 0 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        }

        .modal-content button {
        background-color: #203ec9;
        color: white;
        padding: 10px 14px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        margin-top: 10px;
        width: 100%;
        }

        .modal-content button:hover {
        background-color: #001a6e;
        }
