 .login-parent {
            background-color: #01262d;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-family: 'Segoe UI', sans-serif;
        }

        .login-container {
            display: flex;
            background-color: #01262d;
            width: 80%;
            max-width: 900px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
        }

        .left-panel,
        .right-panel {
            flex: 1;
            padding: 40px;
        }

        .left-panel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .left-panel img {
            max-width: 80px;
            margin-bottom: 20px;
        }

        .left-panel h2 {
            font-size: 24px;
            color: white;
        }

        .right-panel h3 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-control {
            background-color: #ffffff;
            border: none;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .btn-login {
            background-color: #f16529;
            border: none;
            width: 100%;
            padding: 10px;
            color: white;
            font-weight: 600;
        }

        .btn-login:hover {
            background-color: #e0551f;
        }

        .forgot-password {
            margin-top: 10px;
            display: block;
            text-align: center;
            font-size: 0.9rem;
            color: #ddd;
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }